这个该怎么改呀
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);
});
},