老师result是空值还报错怎么办
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);
})
},