linili
2021-08-11 18:29
onLoad: function (options) {
wx.cloud.callFunction({
name:'movielist',
data: {
start: this.data.movieList.length,
count: 10
}
}).then(res=>{
console.log(res);
this.setData({
movieList: this.data.movieList.concat(JSON.parse
(res.result).subjects)
})
}).catch(err => {
console.error(err);
});
},
console.err()改成console.error()
将云函数index.js中的console.err()改成console.error()
轻松入门微信小程序与云开发
64548 学习 · 1742 问题
相似问题