我使用 Ngx 分页。并且显示的数据量与我在“totalItems”中设置的一样多。也就是说,如果我指定的数据多于 JSON 中的数据,则会添加额外的空白页面。这不好。如何做到这一点,自动确定要在分页中显示的数据量?
html:
<div *ngFor="let post of posts | paginate: {itemsPerPage: 10, currentPage:page, id: 'server', totalItems: total}">
....
</div>
<div class="pagination-block " style="justify-content: center">
<pagination-controls (pageChange)="getPosts($event)" id="server">
</pagination-controls>
</div>
ts:
page: number;
total: number;
ngOnInit() {
this.getPosts(this.page);
}
getPosts(page: number) {
this.page = page;
this.total = 3256;
this.servPost.getPosts(page).subscribe(
posts => this.posts = posts
);
}