时间:2019-05-04 来源:小程序工厂
测试模版 你需要点击头像 同意就获取到了 就是官方说的那个接口 获取下基本信息
用户在微信小程序前端授权给了这个微信小程序(getUserInfo),才会拿到相关信息的
wx.cloud.callFunction({
name: 'login',
success: res => {
console.log('[云函数] [login] user openid: ', res.result.openid)
app.globalData.openid = res.result.openid;
wx.getUserInfo({
success: function (res) {
console.log(res.userInfo)
app.globalData.userInfo = res.userInfo;
}
})
}
});
我是这样调用的,怎么会出现这种情况呢?
用户拒绝授权了呀