IE11显示<!-bindings = {“ ng-reflect-ng-for-of”:“”}-> * ngFor的错误

时间:2019-07-24 05:36:28

标签: angular7

我正在尝试使用表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>

1 个答案:

答案 0 :(得分:0)

enter image description here好吧,尝试更改表的结构

<table>
  <thead>
     <th> <mat-icon (click)="removeFile(indx)">delete</mat-icon></th>
  </thead>
  <tbody>
        <tr *ngFor="let item of files">
         <td><strong>{{ item.name }}</strong></td>
         </tr>
  </tbody>
</table>