出现此错误,是因为@ViewChild装饰器必须要有一个“静态”参数,这是在Angular 13中引入的新限制。要解决此问题,需要在装饰器中添加static修饰符。
示例代码如下:
import { Component, ViewChild, ElementRef } from '@angular/core';
@Component({
selector: 'app-sample',
template: 'Hello World!',
})
export class SampleComponent {
@ViewChild('sampleDiv', { static: true }) sampleDiv: ElementRef;
}
在上面的示例中,我们在@ViewChild装饰器中添加了static修饰符,这样就可以避免出现该错误。
下一篇:Angular13生产构建时间