我有table
有200行,我想在不同的页面中显示它们(每页10页)
<table class="table table-striped table-condensed table-hover table-bordered pointer">
<thead>
<th>ID</th>
</thead>
<tbody>
<tr *ngFor="let car of cars;let i = index">
<td>{{car.ID}}</td>
</tr>
</tbody>
</table>
答案 0 :(得分:2)
以下是关于如何在Angular中实现分页的非常好的解释:
Angular 2/5 - Pagination Example with Logic like Google
您可以在我制作的示例网站上看到我如何实现此功能的示例,您可以在我的GitHub回购here获取完整的源代码。