I'm trying to define a simple component, with several properties :
randomFile.html :
<dico [dicoID]="201125" [dicoLang]="en" [delayedLoading]="false"></dico>
<dico [dicoID]="201126" [dicoLang]="en" [delayedLoading]="false"></dico>
Here is my component definition :
dico.component.ts :
@Component({
selector: 'dico',
template: `{{text}}`
})
class Dico implements AfterViewInit {
@Input() private dicoID: string;
@Input() private dicoLang: string;
@Input() private delayedLoading :boolean;
public text: string = null;
constructor(...) {
}
ngAfterViewInit() {
alert(this.dicoID + " " + this.dicoLang + " " + this.delayedLoading);
// Output 1 => 201125 undefined false
// Output 2 => 201126 undefined false
(...)
}
(...)
}
----
@Component({
template: `<dico [dicoID] [dicoLang] [delayedLoading]></dico>`,
directives: [Dico]
})
// Définition du composant DicoComponent
export class DicoComponent {
}
As you can see in the ngAfterViewInit, the second property "dicoLang" is undefined, and I don't understand why... Am I doing something wrong ?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…