這個該怎么改呀
?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);
????});
??},?
2021-08-23
console.err()改成console.error()
2021-09-07
將云函數index.js中的console.err()改成console.error()