配置ViewChild / ContentChild查詢的時間
使用此功能時,必須提供靜態標誌以定義什麼時候須要解析ViewChild和ContentChild實例。
使用此功能時,必須提供靜態標誌以定義什麼時候須要解析ViewChild和ContentChild實例。code
// Ensure Change Detection runs before accessing the instance @ContentChild('foo', { static: false }) foo!: ElementRef; // If you need to access it in ngOnInt hook @ViewChild(TemplateRef, { static: true }) foo!: TemplateRef;
以上功能不適用於ViewChildren或ContentChildren。它們將在變動檢測運行後解析。
須要注意的是,設置static: true將不容許您從動態模板分辨率(例如*ngIf)得到結果。
添加了原理圖支持以將現有代碼遷移到此語法,由於將使用此語法Ivy 。您能夠運行ng update @angular/core以遷移現有代碼。it