最佳答案
我应该如何配置Angular 8的新子视图?
@ViewChild('searchText', {read: ElementRef, static: false})
public searchTextInput: ElementRef;
vs
@ViewChild('searchText', {read: ElementRef, static: true})
public searchTextInput: ElementRef;
哪个更好?什么时候我应该使用static:true
vs static:false
?