我想在 matTable 中为“移动滚动到顶部”创建一个按钮,但我没有得到它。
<mat-table #table [dataSource]="dataSource
(scroll)="onTableScroll($event)">
<!--table data -->
</mat-table>
<button (click)="scrollToTop()>Test</button>
//typescript
@ViewChild('table') table: ElementRef;
scrollToTop() {
this.table.nativeElement.scrollIntoView(true);
}
但它不起作用,nativeElement不是MatTable的元素,我该怎么办?