我收到错误类型错误:使用数据表时,无法读取undefined的属性(阅读'nativeElement')。
typescript
@ViewChild('dataTable',{static:false}) table;
ngAfterViewInit(): void {
// if (!this.table) return;
this.dataTable=$(this.table.nativeElement);
this.dataTable.DataTable();
console.log( this.dataTable.DataTable());
}
HTML语言
<table #dataTable id="example" class="table table-striped table-bordered" style="width:100%">
</table>
1条答案
按热度按时间5fjcxozz1#
或者可以使用@ViewChild('dataTable',{static:false})表:任何;