美文网首页
微信小程序值获取用户信息

微信小程序值获取用户信息

作者: 悟空_不死 | 来源:发表于2020-04-06 16:35 被阅读0次

重点:微信小程序获取用户信息不能直接用wx.getUserInfo(),要使用button做引导
<button open-type="getUserInfo " bindgetuserInfo="bindGetInfo"></button>

//js
Page({
data: {
canIUse: wx.canIUse('button.open-type.getUserInfo')
},
onLoad: function() {
// 查看是否授权
wx.getSetting({
success: function(res){
if (res.authSetting['scope.userInfo']) {
// 已经授权,可以直接调用 getUserInfo 获取头像昵称
wx.getUserInfo({
success: function(res) {
console.log(res.userInfo)
}
})
}
}
})
},
bindGetUserInfo: function(e) {
console.log(e.detail.userInfo)
}
})

相关文章

网友评论

      本文标题:微信小程序值获取用户信息

      本文链接:https://www.haomeiwen.com/subject/klpnphtx.html