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不知道是请求哪个接口报的错误,有方法可以查看吗?谢谢。
/*获取专题列表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
})
}
}
})
},
你好 , 你的如何解决的, 查到原因了吗? 我这也有类似情况...
是服务器返回的数据的问题,就是服务器响应慢或服务器没响应引起的
查找下这个函数的看看
at App get function
所有的接口请求都是用的这个方法,
app.js里的
get(url, data, successFn, failFn) {
var that = this;
wx.request({
url: that.baseUrl + url,
data: data,
header: {
'content-type': 'application/json'
},
method: 'GET',
complete: successFn,
fail: failFn
})
},