最佳答案
我尝试创建新的组件,ResultComponent
,但它的 ngOnInit()
方法被调用两次,我不知道为什么会发生这种情况。在代码中,ResultComponent
从父组件 mcq-component
继承 @Input
。
密码如下:
父组件(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
显示两次,第一次显示正确的数组,第二次显示 undefined
。我一直想不明白: 为什么 ResultComponent
中的 ngOnInit
被调用了两次?