getlist(){
var than = this;
wx.request({
url: '../data.js',
data:{
page: than.pageNum,
pagenum:10,
},
method: 'get',
success(res){
console.log('数据请求成功----' + than.pageNum +'---',res);
if(res.data.message){
//append RecycleContext 对象提供的方法:在当前的长列表数据上追加list数据
than.listobj.append(res.data.data.items);
than.postflg = true;
}
}
})
}
以上是我参考一个demo写的reycle-view的长列表数据分页,但是因为我的所有数据都是写在了本地的data.js里面,但是结果发现小程序本地文件不能使用wx.request请求数据,请问各位大佬帮忙看看我该怎么修改?
不用request了。也不用data append了。直接用js里读取
for循环,每次循环100条数据就好啦