这个该怎么改呀

来源:4-3 电影列表

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

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

  }, 


写回答 关注

2回答

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

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

    慕侠8558...

    他上面写的不就是console.error()了吗

    2021-12-20 10:38:23

    共 1 条回复 >

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

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

轻松入门微信小程序与云开发

深入浅出微信小程序核心基础与云开发,使你掌握小程序开发必备技能。

64548 学习 · 1742 问题

查看课程

相似问题