我有一个在其父组件中使用两次的子组件,它使用 ngOnChages 来更新值;
这一切都很好,但现在我正在尝试根据通过@Input
变量传递的信息在孩子内部操纵模板。
我发现的是;首次加载父组件时,模板变量在函数调用中未定义
这是有道理的,因为这个函数是在onChanges
方法中调用的,并且没有给模板足够的时间来加载。
我需要重构我的代码,但是怎么做呢?
目前,如果我使用它可以工作setTimeout
所以简单地说:
@ViewChild('myContainer', {read: ElementRef}) myContainer: ElementRef;
@Input() myUpdatingVar
ngOnChanges(): void {
if (this.myUpdatingVar === someValue) {
this.myFunc(this.someValue1);
} else {
this.myFunc(this.someValue2);
}
}
myFunc(param){
do stuff....
this.updateDom(anotherParam);
}
updateDom(param) {
// If I use setTimeout this works
this.myContainer.nativeElement.querySelector(`#someId`); // Undefined
}