wx.login 里只支持get请求
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请求