wx.login({
success(res) {
if (res.code) {
// 调用服务端接口,获取openId
console.log(res.code);
wx.request({
url: vm.oobusCenter + vm.appletLogin,
data: { code: res.code },
header: {
'content-type': 'application/json' // 默认值
},
success(appletLoginRes) {
console.log(appletLoginRes.data);
}
});
} else {
console.log('登录失败!' + res.errMsg)
}
}
});
wx.login 里边嵌套的 wx.request 只支持get请求,不支持post请求
支持post
那为什么我这段代码不能用呢
是不是整个app.js这个文件里都不支持post方法啊