对于微信小程序更新后的wx.getUserProfile怎么用?小程序怎么获取用户信息
getUserProfile接口文档:https://developers.weixin.qq.com/miniprogram/dev/api/open-api/user-info/wx.getUserProfile.html
首先是我们要注意的以下几点
1.开发者工具一定要更新到最新版本,注意一定是最新,开发工具检查更新可能不是最新的,需要是在1.05.2103022版本
2. 基础库支持一定要2.10.4版本及以上
3. wx.getUserProfile调用的时候不能在onShow或者onLoad里面调用,要在catchtap或者button调用
上代码:
wx.getUserProfile({
desc:'获取用户相关信息',
success:res=>{
console.log("getUserProfile",res);
}
});
输出结果:
此处结尾,小编温馨提示:一定要时常关注文档更新哦。。。。