我有像你这样的示例任务。我很容易用第二个标题显示无。
<ng-container matColumnDef="position">
<th mat-header-cell *matHeaderCellDef [ngStyle]="{'display': 'none'}"> No. </th>
<td mat-cell *matCellDef="let element"> {{element.position}} </td>
</ng-container>
<!-- first stage header -->
<ng-container matColumnDef="No">
<th mat-header-cell *matHeaderCellDef [attr.rowspan]="2">No</th>
</ng-container>
您可以关注我的链接了解更多信息:StackBlitz
如果要使用colspan和rowspan等本机表功能,则需要使用:
<table mat-table>
...
</table>
例如: