时间:2019-05-03 来源:小程序工厂
程***:
用一个事件回调
b***:
onLoad: function () {
wx.request({
url: app.globalData.domain,
method: 'POST',
header: {
'content-type': 'application/x-www-form-urlencoded'
},
data: {
sessionKey: wx.getStorageSync('sessionKey'),
},
success: function (result) {
console.log(result);
}
})
}
怎么改?比如这样...
程***:
增加一个callback,具体函数内容在其他页面初始化:
// 由于 getUserInfo 是网络请求,可能会在 Page.onLoad 之后才返回
// 所以此处加入 callback 以防止这种情况
if (this.userInfoReadyCallback) {
this.userInfoReadyCallback(res)
}
b***:
谢谢大佬