1
import {Component, ElementRef, HostBinding, ViewChild} from '@angular/core';
export class MainPage {
  constructor(
    el: ElementRef
  ) {
    this.contentElement = el.nativeElement;
  }

  contentElement = null;

@ViewChild('wrapper', { static: true }) wrapper: ElementRef;

this.size = this.wrapper.nativeElement.clientWidth - 36;

结果

ERROR TypeError: Cannot read property 'nativeElement' of undefined
console.log(this.wrapper);
=>undefined

在另一个组件中,它无需任何初始化即可正常工作。

但我不知道为什么这个组件不能工作

4

1 回答 1

3

如果您希望您的 ViewChild 不是未定义的,则需要呈现模板。一切都与时机有关。您正在尝试使用尚不存在的东西,这就是您遇到错误的原因。

您需要使用 Angular 提供的生命周期钩子

在您的情况下,需要先渲染视图,因此我将使用ngAfterViewInit()withstatic: falsengOnInit()withstatic: true

ngAfterViewInit(): void {
    this.size = this.wrapper.nativeElement.clientWidth - 36;
}
于 2021-04-15T01:41:02.227 回答