uniapp微信小程序获取头像
时间: 2023-10-24 13:05:36 浏览: 165
uniapp 小程序授权登录,获取用户头像昵称等信息
5星 · 资源好评率100%
可以通过uniapp的uni.getUserInfo()方法获取用户信息,其中包括头像信息。具体实现步骤如下:
1. 在manifest.json文件中添加微信小程序的权限配置:
```
"mp-weixin": {
"appid": "your appid",
"scope": "scope.userInfo"
}
```
2. 在需要获取用户信息的页面中,调用uni.getUserInfo()方法:
```
uni.getUserInfo({
provider: 'weixin',
success: function (res) {
console.log(res.userInfo.avatarUrl); // 头像信息
}
});
```
阅读全文