小程序
小游戏
企业微信
微信支付
扫描小程序码分享
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
你这个已经落后了.
最新得看这里:
api文档地址: https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/userProfile.html
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
// 查看是否缓存用户信息
if(!this.userInfo.name) {
// 查看是否授权过
wx.getSetting({
success: res => {
console.log('setting',res.authSetting['scope.userInfo']);
if(!res.authSetting['scope.userInfo']) {
// 获取授权
wx.getUserProfile({
desc: '用于完善会员资料', // 声明获取用户个人信息后的用途,后续会展示在弹窗中,请谨慎填写
console.log('userInfo',res)
this.userInfo = {
name: res.userInfo.nickName,
avatar: res.userInfo.avatarUrl,
sex: res.userInfo.gender
}
// 绑定后台与微信号
this.wxBind()
})
} else{
this.login()
// 登录
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
你这个已经落后了.
最新得看这里:
api文档地址: https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/userProfile.html
// 查看是否缓存用户信息
if(!this.userInfo.name) {
// 查看是否授权过
wx.getSetting({
success: res => {
console.log('setting',res.authSetting['scope.userInfo']);
if(!res.authSetting['scope.userInfo']) {
// 获取授权
wx.getUserProfile({
desc: '用于完善会员资料', // 声明获取用户个人信息后的用途,后续会展示在弹窗中,请谨慎填写
success: res => {
console.log('userInfo',res)
this.userInfo = {
name: res.userInfo.nickName,
avatar: res.userInfo.avatarUrl,
sex: res.userInfo.gender
}
// 绑定后台与微信号
this.wxBind()
}
})
} else{
this.login()
}
}
})
} else{
// 登录
this.login()
}
https://developers.weixin.qq.com/community/develop/doc/00022c683e8a80b29bed2142b56c01
我的意思是,你与其改你这哈得代码,不如按照最新得文档要求,做升级,和你们产品过一下这个.