小程序
小游戏
企业微信
微信支付
扫描小程序码分享
wx.getUserProfile接口真机和开发者工具上高于官方要求2.10.4,很多版本(如:2.14.3,2.14.4,2.12.1,一大堆)都用不了,低于该版本是直接用不了的用不了。
这部分用户怎么办?
放弃?
爱用不用?
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
具体请查看社区公告https://developers.weixin.qq.com/community/develop/doc/000cacfa20ce88df04cb468bc52801
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
具体请查看社区公告https://developers.weixin.qq.com/community/develop/doc/000cacfa20ce88df04cb468bc52801
desc: '用于完善员工资料', // 声明获取用户个人信息后的用途,后续会展示在弹窗中,请谨慎填写
success: (res) => {
console.log(res)
that.setData({
hasUserInfo: true
})
wx.getUserInfo({
success(e) {
console.log(e)
let data = Object.assign({},{
// headimg:e.userInfo.avatarUrl,
sex: e.userInfo.gender == 1 ? '男' : '女',
wxid:that.data.openid,
nickname: res.userInfo.nickName,
headimg: res.userInfo.avatarUrl
})
wx.setStorageSync('nickname', res.userInfo.nickName)
wx.setStorageSync('headimg',res.userInfo.avatarUrl)
let success = (res=>{
wx.setStorageSync('myUsername', res.data.im_username)
wx.setStorageSync('im_password', res.data.im_password)
wx.setStorageSync('accountType', res.data.accountType)
wx.setStorageSync('app_id', res.data.userToken)
wx.setStorageSync('usercode', res.data.usercode)
// wx.setStorageSync('headimg', res.data.headimg)
wx.setStorageSync('yhcode', res.data.usercode)
// wx.navigateBack({
// delta: 1
// })
wx.switchTab({
url: '/pages/index/index',
})
})
_config.request('/api/v1/userLogin', data, success);
}
})