我正在通过分页发布zorr表。使用分页,如以下
进行分页<nz-table #dynamicTable
[nzScroll]="fixHeader ? { y: '240px' } : null"
[nzData]="countryList"
[nzLoading]="loading"
[nzShowPagination]="false"
[nzFooter]="footer ? 'Sayfalama' : null"
[nzTitle]="title ? 'Müşteri Listesi' : null"
[nzSize]="size">
<thead>
<tr *ngIf="header">
<!-- <th nzWidth="50px"></th>-->
<th nzWidth="150px">Kod</th>
<th nzWidth="70px">Ad</th>
<th>3'lü kod</th>
<th nzWidth="260px">Telefon kodu</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let data of dynamicTable.data">
<!-- <td nzShowCheckbox *ngIf="checkbox" [(nzChecked)]="data.checked"></td>-->
<td>{{ data.code }}</td>
<td>{{ data.name }}</td>
<td>{{ data.tripleCode }}</td>
<td>{{ data.phoneCode }}</td>
</tr>
</tbody>
</nz-table>
<br>
<nz-pagination class="pagination" nzShowSizeChanger nzShowQuickJumper [nzTotal]="total" [(nzPageIndex)]="pageIndex" [(nzPageSize)]="pageSize"
(nzPageSizeChange)="pageSizeChanged($event)" (nzPageIndexChange)="pageIndexChanged($event)"
[nzPageSizeOptions]="pageSizeOptions">
</nz-pagination>
问题是当我设置数据的总记录时,该记录也从API中获得,如下所示。该表仅显示10条记录,无论总数是多少。
loadPage() {
this.apiService.postAny(['ListAsync'], null, this.filterModel).subscribe(data => {
if (this.apiService.checkResponse(data)) {
this.loading = false;
this.total = data.result.count;
this.countryList = [];
this.countryList = data.result.result as CountryListModel[];
}
}, error => {
console.log(error);
}, () => {
console.log('Country load completed !');
});
}
API返回17条记录,但表仅显示10条记录。如果我使用具有页码的页面导航,则可以看到具有页面大小的所有记录。但是,如果我直接更改页面大小(例如,将其设置为每页20个)表,则仅增加10条记录。但是API会按预期返回。
答案 0 :(得分:0)
您需要为计数页添加[nzTotal],并为[pageIndex],[pageSize]添加