如何解决wx.getUserProfile调用,点击事件后不出现同意授权弹窗?
<button class='bottom' type='primary' bindtap="bindGetUserProfile">授权登录</button>
bindGetUserProfile(e) {
wx.getUserProfile({
lang: 'zh_CN',
desc: '为了方便小程序的使用请授权用户信息!', // 声明获取用户个人信息后的用途,后续会展示在弹窗中,请谨慎填写
success: (res) => {
console.log(res.userInfo)
this.setData({
userInfo: res.userInfo,
isHide: true
});
}
})
},
[图片] 开发工具:开发版 ,版本号:1.05.2104092