我做了使用以下链接角6的材料数据表。 https://blog.angular-university.io/angular-material-data-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>
任何人指导我该怎么做angular6垫表内的内部列表可能* ngFor。