我正在尝试集成ng2-bootstrap 分页组件和引导表。
我有一个加载了 ngFor 指令的简单引导表:
<tr>
<th *ngFor="#col of cols">{{col.header}}
</tr>
</thead>
<tbody>
<tr *ngFor="#row of rows">
<td *ngFor="#col of cols">{{row[col.field]}}</td>
</tr>
</tbody>
内容rows
由分页组件确定:我有一个名为的数组data
,其中包含表的一堆条目。数组长度用于确定totalItems
分页组件:
<pagination class="pagination-sm"
[(ngModel)]="page"
[totalItems]="data.length"
[itemsPerPage]="itemsPerPage"
[maxSize]="maxSize"
[boundaryLinks]="true"
(pageChanged)="onPageChange($event)">
</pagination>
该表的rows
变量仅包含当前页面的条目。这是通过使用pageChange
分页组件提供的事件来完成的:
onPageChange(page:any) {
let start = (page.page - 1) * page.itemsPerPage;
let end = page.itemsPerPage > -1 ? (start + page.itemsPerPage) : this.data.length;
this.rows = this.data.slice(start, end);
}
到目前为止一切顺利......问题是可以从data
数组中删除条目。如果分页栏指向最后一页,然后从data
数组中删除条目,则控制台中会显示以下错误:
Expression 'rows in App@9:8' has changed after it was checked.
可以在此处找到一个实时示例:
http ://plnkr.co/edit/5zxamBiWISBpEmXYP5UK?p=preview
只需单击last
按钮,然后单击cut data
。
有什么建议吗?