删除最后一页的最后一条数据,没回到前一页
Posted share-record
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了删除最后一页的最后一条数据,没回到前一页相关的知识,希望对你有一定的参考价值。
// 更新当前页码 let totalPage = Math.ceil((this.totalNum - 1)/this.pageSize); let currentPage = this.currentPage > totalPage ? totalPage : this.currentPage; this.currentPage = this.currentPage < 1 ? 1 : currentPage;
参考博客:https://www.cnblogs.com/duanzhenzhen/p/12565911.html
以上是关于删除最后一页的最后一条数据,没回到前一页的主要内容,如果未能解决你的问题,请参考以下文章