- 当前 Bug 的表现(可附上截图)
- 预期表现
- 复现路径
- 提供一个最简复现 Demo
onLoad: function (options) {
var that = this;
wx.login({
success: (res) => {
//获取微信小程序openid
wx.request({
url: options.Host + '/?scode=' + res.code,
method: "GET",
header: {
'content-type': 'application/json'
},
success: (result) => {
getApp().openid = result.data.openid;
that.requestOrder(options, that);
},
fail: (result) => {
}
});
},
fail: (res) => {
}
});
},
微信小程序开发问题解答
微信小程序开发者回答:
那部署到正式环境console.log()我要去哪看呢,真机调试这个没问题
微信小程序开发者回答:
fail(res){
console.log(res)
}
打印下
本文网址:http://www.91bianli.com/weixinxiaochengxu/41969.html