美文网首页
小程序分页加载

小程序分页加载

作者: 笨笨猿 | 来源:发表于2019-03-07 15:14 被阅读0次

    // 请求数据的函数

    function loadData(currentPage = 0, pageSize = 5) {

      let res;

      // 获取数据

      // xxxxxxx

      const totalPage = Math.ceil(res.total / pageSize);

      const { list } = this.data;

      const newList = list.concat(res.data);

      this.setData({

        totalPage,

        currentPage: currentPage + 1,

        pageSize,

        list: newList

      })

    }

    onLoad: function() {

      this.loadData(0, 5);

    }

    loadMoreData: function() {

      const { currentPage, totalPage, pageSize } = this.data;

      if (currentPage >= totalPage) {

        return;

      }

      this.loadData();

    }

    相关文章

      网友评论

          本文标题:小程序分页加载

          本文链接:https://www.haomeiwen.com/subject/lgicpqtx.html