我有一个包含两个字段的 Angular 材料表:
<table mat-table [dataSource]="dataSource" matSort class="mat-elevation-z8">
<ng-container matColumnDef="Field1">
<th mat-header-cell *matHeaderCellDef mat-sort-header>Field1</th>
<td mat-cell *matCellDef="let element"> {{element.Field1}} </td>
</ng-container>
<ng-container matColumnDef="Field2">
<th mat-header-cell *matHeaderCellDef mat-sort-header>Field2</th>
<td mat-cell *matCellDef="let element"> {{element.Field2}} </td>
</ng-container>
<tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>
<tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr>
</table>
我导入以下模块:
Material.MatTableModule,
Material.MatSortModule,
然后我声明排序如下:
@ViewChild(MatSort) sort: MatSort;
我通过在构造函数中调用以下方法从外部 API 填充数据源:
populateTable() {
this.requestHttpService.getStuff()
.subscribe(data => {
this.results = data;
this.dataSource = this.results;
this.dataSource.sort = this.sort;
},
...
正如您所注意到的,我试图在加载数据源后附加排序。
我也尝试在 ngAfterViewInit() 和其他几个地方附加排序,但无论我做什么它都不起作用。
任何想法?