- 当前 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()我要去哪看呢,真机调试这个没问题
https://developers.weixin.qq.com/miniprogram/dev/api/wx.setEnableDebug.html
弄个地方按10下,出调试框。
或者在开发版打开调试,再进入正式版
好滴,谢谢了,已经解决,没绑定request域名
fail(res){
console.log(res)
}
打印下