我使用http://michaelbromley.github.io/ngx-pagination/#/
实现了分页 <pagination-controls (pageChange)="updatesPageChanged($event)" previousLabel="" nextLabel="" id="updates"></pagination-controls>
<div class="cards" *ngFor="let item of completedDeals | paginate: {id:'updates', itemsPerPage:limit, currentPage:currentPage,totalItems:totalItems}">
</div>
这很好,但是,我需要检查当前分页是在第一页还是最后一页
从文档中我可以使用以下函数isFirstPage() [()=&gt; boolean]如果当前页面是第一页,则返回true。 isLastPage()[()=&gt; boolean]如果当前页面是,则返回true 最后一页getLastPage()[()=&gt; number]返回的页码 最后一页。
但我不知道这些功能如何与pagination-controls