我使用下面的链接完成了Angular 6材质数据表。 https://blog.angular-university.io/angular-material-data-table/
效果很好。但是,我需要在mat-table中显示内部列表,并且该列表应该在每一行之后。我想要的东西如下。
<mat-table class="lessons-table mat-elevation-z8" [dataSource]="dataSource"
matSort>
/* I need to iterate dataSource.innerArray and display */
/* This list should come after each row. */
<ng-container matColumnDef="PayrollApproval">
<mat-header-cell *matHeaderCellDef >Payroll Approval</mat-header-cell>
<mat-cell class="description-cell" *matCellDef="let job">
{{job.data}}
</mat-cell>
</ng-container>
</mat-table>
任何人都可以指导我如何做内部列表,也许是ng6 mat-table内的* ngFor。