问答详情
源自:4-3 电影列表

这个该怎么改呀

 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);

    });http://img3.mukewang.com/6113a68700019baa09450360.jpg

  }, 


提问者:linili 2021-08-11 18:29

个回答

  • 谢成
    2021-08-23 10:20:33

    console.err()改成console.error()

  • 旧情歌_
    2021-09-07 17:04:14

    将云函数index.js中的console.err()改成console.error()