我不明白ngOnInit
和ngAfterViewInit
之間有什麼區別。ngOnInit和Angular2的ngAfterViewInit有什麼區別?
我發現他們之間的唯一區別是@ViewChild
。根據以下代碼,其中的elementRef.nativeElement
是相同的。
我們應該使用什麼場景ngAfterViewInit
?
@Component({
selector: 'my-child-view',
template: `
<div id="my-child-view-id">{{hero}}</div>
`
})
export class ChildViewComponent {
@Input() hero: string = 'Jack';
}
//////////////////////
@Component({
selector: 'after-view',
template: `
<div id="after-view-id">-- child view begins --</div>
<my-child-view [hero]="heroName"></my-child-view>
<div>-- child view ends --</div>`
+ `
<p *ngIf="comment" class="comment">
{{comment}}
</p>
`
})
export class AfterViewComponent implements AfterViewInit, OnInit {
private prevHero = '';
public heroName = 'Tom';
public comment = '';
// Query for a VIEW child of type `ChildViewComponent`
@ViewChild(ChildViewComponent) viewChild: ChildViewComponent;
constructor(private logger: LoggerService, private elementRef: ElementRef) {
}
ngOnInit(){
console.log('OnInit');
console.log(this.elementRef.nativeElement.querySelector('#my-child-view-id'));
console.log(this.elementRef.nativeElement.querySelector('#after-view-id'));
console.log(this.viewChild);
console.log(this.elementRef.nativeElement.querySelector('p'));
}
ngAfterViewInit() {
console.log('AfterViewInit');
console.log(this.elementRef.nativeElement.querySelector('#my-child-view-id'));
console.log(this.elementRef.nativeElement.querySelector('#after-view-id'));
console.log(this.viewChild);
console.log(this.elementRef.nativeElement.querySelector('p'));
}
}
當你說_rendered_,你的意思是它出現在屏幕上? (或發送呈現出現在屏幕上) –
當它被添加到DOM。如果您將'display:hidden'設置爲呈現狀態,但屏幕上不可見。但是,如果您使用瀏覽器devtools調查DOM,則可以看到標記。 –
「_you在呈現之前無法訪問視圖成員_」 - 那麼如何解釋'ViewChild'(vc)在'onNgInit'上可用? https://plnkr.co/edit/AzhRe6bjnuPLKJWEJGwp?p=preview,你能解釋一下嗎? –