飞道的博客

vue实现简单的分页功能

457人阅读  评论(0)

 

分页其实就是对一组数据分组!而vue又刚好是数据驱动,所以我们只需要关注数据层就行了!分页开始--->

变量:


  
  1. data() {
  2. return {
  3. // 假设这是后台传来的数据来源
  4. data: [],
  5. // 所有页面的数据
  6. totalPage: [],
  7. // 每页显示数量
  8. pageSize: 5,
  9. // 共几页
  10. pageNum: 1,
  11. // 当前显示的数据
  12. dataShow: "",
  13. // 默认当前显示第一页
  14. currentPage: 0
  15. };
  16. },

步骤1:计算页数


  
  1. // 这里简单模拟一下后台传过来的数据
  2. for ( let i = 0; i < 601; i++) {
  3. this.data.push({ name: "liu" , look: "very handsome"});
  4. }
  5. // 根据后台数据的条数和每页显示数量算出一共几页,得0时设为1 ;
  6. this.pageNum = Math.ceil( this.data.length / this.pageSize) || 1;

步骤二:根据页数对数据分组,并存进每一页


  
  1. for ( let i = 0; i < this.pageNum; i++) {
  2. // 每一页都是一个数组 形如 [['第一页的数据'],['第二页的数据'],['第三页数据']]
  3. // 根据每页显示数量 将后台的数据分割到 每一页,假设pageSize为5, 则第一页是1-5条,即slice(0,5),第二页是6-10条,即slice(5,10)...
  4. this.totalPage[i] = this.data.slice( this.pageSize * i, this.pageSize * (i + 1))
  5. }
  6. // 获取到数据后显示第一页内容
  7. this.dataShow = this.totalPage[ this.currentPage];

步骤三:设置默认显示页,上一页下一页,只需要切换当前页面的索引值就行了


  
  1. // 上一页和下一页
  2. // 下一页
  3. nextPage() {
  4. if ( this.currentPage === this.pageNum - 1) return ;
  5. this.dataShow = this.totalPage[++ this.currentPage];
  6. },
  7. // 上一页
  8. prePage() {
  9. if ( this.currentPage === 0) return ;
  10. this.dataShow = this.totalPage[-- this.currentPage];
  11. }

 


转载:https://blog.csdn.net/illusion_melody/article/details/82714793
查看评论
* 以上用户言论只代表其个人观点,不代表本网站的观点或立场