这仅在IE / Edge中发生,并在Chrome / Firefox中按预期工作。但是,在IE中,表项显示一秒钟,然后消失。这是我的HTML:
<table md-table md-row-select ng-model="upLoaders">
<thead md-head md-order="query.tom" md-on-reorder="getIds">
<tr md-row>
<th md-column><span>Username</span></th>
<th md-column>Role</th>
<th md-column>Approved</th>
</tr>
</thead>
<tbody md-body>
<tr md-row ng-repeat="user in filtered = (users | filterArray:uploadedUsers)">
<td md-cell>{{user.username}}</td>
<td md-cell>{{user.role}}</td>
<td md-cell>{{user.approved}}</td>
</tr>
</tbody>
</table>
答案 0 :(得分:0)
尝试将Angularjs版本更新到1.7.2以上