小程序
小游戏
企业微信
微信支付
扫描小程序码分享
目前真机调试设置了2.10.4~2.11.2,在开发工具上是行的,但是真机不行,麻烦微信那边解决一下,毕竟到4月份了wx.getUserInfo接口改了,如果wx.getUserProfile还是不行的话怎么办。。。。
真机版本:
代码输出:
输出结果:
9 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
是用微信开发者工具推的基础库吗?
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
wx.getUserProfile只能由bindtap触发的事件里调用,longpress,touch之类都不行,onshow,onload就更不行了,if(wx.getUserProfile)判断都是不能用的,其实wx.getUserProfile用法沿用了getUserInfo一些特征的。另外bindtap触发的事件里面调用含有wx.getUserProfile的方法是可行的,异步回调执行也是可以。
rawData被你吃了?少了多少东西?
我采用的 简单有效 的 wx.getUserProfile 修改方法
https://developers.weixin.qq.com/community/develop/article/doc/00000cc422c12844b4fb644d056813
参考版本号:2.10.4/2.11.2/2.12.3/2.14.1/2.15.0
我把wx.getUserProfile放到promise的then中就调用失败
wx.getUserProfile解密openid无返回避雷:https://blog.csdn.net/qq_21479909/article/details/115529769
2.15.0的可以
做好让用户手动填写昵称、上传头像的准备
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
是用微信开发者工具推的基础库吗?
wx.getUserProfile只能由bindtap触发的事件里调用,longpress,touch之类都不行,onshow,onload就更不行了,if(wx.getUserProfile)判断都是不能用的,其实wx.getUserProfile用法沿用了getUserInfo一些特征的。另外bindtap触发的事件里面调用含有wx.getUserProfile的方法是可行的,异步回调执行也是可以。
rawData被你吃了?少了多少东西?
我采用的 简单有效 的 wx.getUserProfile 修改方法
https://developers.weixin.qq.com/community/develop/article/doc/00000cc422c12844b4fb644d056813
参考版本号:2.10.4/2.11.2/2.12.3/2.14.1/2.15.0
我把wx.getUserProfile放到promise的then中就调用失败
wx.getUserProfile解密openid无返回避雷:https://blog.csdn.net/qq_21479909/article/details/115529769
2.15.0的可以
getuserinfo: function(e) {
var that = this;
var logintag = wx.getStorageSync('logintag');
console.log('wx.getUserProfile',wx.canIUse('getUserProfile'));
wx.getUserProfile({
lang:'zh_CN',
desc: '为了你更好的使用体验,需要完善你的个人信息。', // 声明获取用户个人信息后的用途,后续会展示在弹窗中,请谨慎填写
success: (res) => {
console.log(res);
var userInfo=res.userInfo;
var wx_headimg = userInfo.avatarUrl;
wx.setStorageSync('wx_headimg', wx_headimg);
wx.setStorageSync('wx_nickname', userInfo.nickName);
wx.request({
url: app.globalData.siteroot + 'getweixininfo',
data: {
logintag: logintag,
city: userInfo.city,
country: userInfo.country,
province: userInfo.province,
gender: userInfo.gender,
nickName: userInfo.nickName,
wx_headimg: userInfo.avatarUrl,
uniacid: app.globalData.uniacid,
},
method: "GET",
success(res) {
console.log(res);
if (res.data.retCode == '0000') {
app.errorTip(that, res.data.retDesc, 2000);
setTimeout(function () {
//要延时执行的代码
wx.redirectTo({
url: decodeURIComponent(that.data.url),
})
}, 1000) //延迟时间 这里是1秒
} else {
app.errorTip(that, res.data.retDesc, 2000);
}
}
})
}
});
},
做好让用户手动填写昵称、上传头像的准备