新しいコンポーネント を作成しようとしていますResultComponent
が、そのngOnInit()
メソッドが 2 回呼び出されており、なぜこれが起こっているのかわかりません。コードでは、親 component からResultComponent
継承します。@Input
mcq-component
コードは次のとおりです。
親コンポーネント (MCQComponent)
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'mcq-component',
template: `
<div *ngIf = 'isQuestionView'>
.....
</div>
<result-comp *ngIf = '!isQuestionView' [answers] = 'ansArray'><result-comp>
`,
styles: [
`
....
`
],
providers: [AppService],
directives: [SelectableDirective, ResultComponent]
})
export class MCQComponent implements OnInit{
private ansArray:Array<any> = [];
....
constructor(private appService: AppService){}
....
}
子コンポーネント (result-comp)
import { Component, OnInit, Input } from '@angular/core';
@Component({
selector:'result-comp',
template: `
<h2>Result page:</h2>
`
})
export class ResultComponent implements OnInit{
@Input('answers') ans:Array<any>;
ngOnInit(){
console.log('Ans array: '+this.ans);
}
}
実行すると、console.log
2回表示されます.1回目は正しい配列を示していますが、2回目はundefined
. 私はそれを理解することができませんでした: なぜngOnInit
2ResultComponent
回呼び出されるのですか?