我正在尝试使用表tr td遍历* ngFor。* ngFor在IE浏览器中显示空数据。但是在chrome中可以正常工作。
代码段:
<tbody>
<tr *ngFor="let item of files; let indx= index">
<td><strong>{{ item.name }}</strong></td>
<th class="text-center">
<mat-icon (click)="removeFile(indx)">delete</mat-icon>
<!-- <mat-icon>get_app</mat-icon> -->
</th>
</tr>
</tbody>