有大佬知道怎么把wx.login返回的openid传递出wx.login外面么?我其他地方要用到
wx.login({
success:function(res){
console.log(res.code)
//发送请求
wx.request({
url: 'http://62.234.29.69/zzx/openid.php',
data: {code:res.code},
header: {
'content-type': 'application/json'
},
success: function (res) {
console.log(res.data)//res.data就是openid的值了
}
})
}
})
有大佬知道么,我想把res.data(也就是返回的openid)取出wx.login外面,让他在其他地方也可以用