小程序告警群提示,能看到是请求哪个api接口出错吗?
发布于 6 年前 作者 xiuyingchang 3380 次浏览 来自 问答

Appid: wx2911548a18ed7d95

昵称: 车客生鲜

时间: 2018-11-12 11:34:12

次数: 5分钟 47次

类型:脚本错误

错误样例: undefined is not an object (evaluating ‘a.data.code’);at App get function;at api request complete callback function

登录公众平台小程序运维中心可查看更多错误信息

您好,a.data.code不知道是请求哪个接口报的错误,有方法可以查看吗?谢谢。

2 回复

查找下这个函数的看看

/*获取专题列表api*/

getIndexEventList: function() {

app.get(’/api/…/getIndexEventList’, {

sessionId: wx.getStorageSync(‘thirdSessionId’)

}, function(res) {

if (res.data.code == 1) {

if (that.data.topicsList != res.data.data) {

that.setData({

topicsList: res.data.data

})

}

}

})

},

回到顶部