开发者问题收集

在 *ngIf 条件下使用 @viewchid 时获取未定义的 nativeElement

2022-06-09
172

在 *ngIf 条件下使用 @viewchid 时获取未定义的 nativeElement

错误

未捕获(在承诺中):TypeError:无法读取未定义的属性(读取“nativeElement”)

2个回答
@ViewChild('myElement', { static: false }) myElement: ElementRef<HTMLElement>;

不要在构造函数中调用它, ngAfterViewInit 是第一个定义它的钩子。

2022-06-09

如果您的 `*ngIf 条件是动态的,您可能应该使用 setter。

@ViewChild('myElement') set setMyElement(myElement: ElementRef) {

    if (myElement) {
      // Here you can access content.nativeElement etc.
    }

  }
munleashed
2022-06-09