要避免在ngIf条件尚未满足时出现elementRef未定义的错误,可以使用以下解决方法之一:
import { Component, AfterViewInit, ViewChild, ElementRef } from '@angular/core';
@Component({
selector: 'app-example',
template: `
`
})
export class ExampleComponent implements AfterViewInit {
@ViewChild('myElement', { static: false }) myElementRef: ElementRef;
condition = false;
ngAfterViewInit() {
if (this.condition && this.myElementRef) {
// Access your elementRef here
}
}
}
import { Component, AfterViewChecked, ViewChild, ElementRef } from '@angular/core';
@Component({
selector: 'app-example',
template: `
`
})
export class ExampleComponent implements AfterViewChecked {
@ViewChild('myElement', { static: false }) myElementRef: ElementRef;
condition = false;
ngAfterViewChecked() {
if (this.condition && this.myElementRef) {
// Access your elementRef here
}
}
}
请注意,这些解决方法假设在ngIf条件满足之前没有对elementRef的特殊要求。如果对elementRef的初始化或使用有特殊要求,请将其放在适当的生命周期钩子中处理。