TypeError: console.err is not a function

来源:4-3 电影列表

weixin_慕UI1168083

2020-02-25 15:45

onLoad: function (options) {

wx.cloud.callFunction({

name: 'movielist'

}).then(res => {

console.log(res);

}).catch(err => {

console.log('哈哈,出错');

console.log(err);

})

},


老是提示这个错误:TypeError: console.err is not a function

写回答 关注

1回答

  • 谢成
    2020-02-26 09:35:22

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

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

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

64581 学习 · 1742 问题

查看课程

相似问题