在 之前的uniapp版本中,获取用户信息采用的是getuserinfo的方法,但是由于近期uniapp的api更新,getuerinfo已经无法通过弹出授权框来授权获取真实的用户信息,只能获取到默认的用户信息(微信用户),造成了诸多困扰。
这里提供了一个解决的办法:使用uni.getUserProfile方法,可以弹出授权狂,获取用户信息,演示过程代码如下:
<button @click="getUserInfo()">获取权限</button>
methods: {
getUserInfo(){
let that = this
uni.getUserProfile({
desc:"weixin", // 指明用途,这个参数是必须的
success:function(res){
that.nickName = res.userInfo.nickName
that.avatarUrl = res.userInfo.avatarUrl
console.log(res.userInfo)
}
})
}
}
亲测有效!