我正在尝试像这样使用 ViewChild:
@ViewChild('hello', { static: false })
divHello?: ElementRef;
这是模板:
<div class="wrap" #hello>
Some test data
</div>
但是, ViewChild 注释显示此错误:
Unable to resolve signature of property decorator when called as an expression.
This expression is not callable.
Type 'void' has no call signatures.
制作目标 ES5 不是我的解决方案,因为我不希望这样。
有什么方法可以使用 ViewChild?我指的是本教程:https ://www.tektutorialshub.com/angular/renderer2-angular/