如何使用ng2-file-upload for Mattable获取上传文件的名称

时间:2018-10-04 11:12:55

标签: angularjs ng2-file-upload

文件上传引用此link

我正在使用https://material.angular.io/components/table/overview计量表来显示数据,当我执行element.file.name时,我无法获取文件名,请帮助我。

    <mat-table #table [dataSource]="dataSource" matSort>
  <ng-container matColumnDef="{{column.id}}" *ngFor="let column of columnNames">
    <mat-header-cell *matHeaderCellDef mat-sort-header> {{column.value}} </mat-header-cell>
    <mat-cell *matCellDef="let element"> {{element['file']['name']}} </mat-cell>
  </ng-container>

  <mat-header-row *matHeaderRowDef="displayedColumns"></mat-header-row>
  <mat-row *matRowDef="let row; columns: displayedColumns;"></mat-row>
</mat-table>

0 个答案:

没有答案