6
如何在Angular 8中为@ViewChild使用新的静态选项?
我应该如何配置新的Angular 8视图子级? @ViewChild('searchText', {read: ElementRef, static: false}) public searchTextInput: ElementRef; 与 @ViewChild('searchText', {read: ElementRef, static: true}) public searchTextInput: ElementRef; 哪个更好?我什么时候应该使用static:truevs static:false?