都没有数据了,还在加载
https://developers.weixin.qq.com/community/develop/article/doc/000cc87a7007885df5b862b3d51c13
声明一个开关,为true的时候才会去滚动加载更多,当返回的分页数据的length=0,就表示没有跟多了,把开关设为false
//说明:page:当前页数 last_page:总页数 当当前页数等于总页数的时候就停止请求 let that=this; if (that.data.page < that.data.last_page) { that.data.page++; that.getList(); }else{ wx.showToast({ title: '没有更多了', icon:"none" }) }