小程序
小游戏
企业微信
微信支付
扫描小程序码分享
getPhoneNumber在有的手机上 获取不到iv,encryptedData
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
麻烦提供出现问题的机型和微信版本,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
var _this = this;
if (e.detail.errMsg == 'getPhoneNumber:fail user deny') {
_this.onCancel();
return false;
}
//判断是否有sessionKey
if (!_this.data.userInfo.sessionKey) {
//commont.userAuthorization(_this,'authorlogin');
_this.setData({
is_authorized: false
})
} else {
wx.checkSession({
success: function () {
cardCommont.getWebchatMobile(e.detail.iv, e.detail.encryptedData, res => {
if (!res) {
commont.hint("该手机已被绑定", '');
_this.data.userInfo.mobile = res;
_this.data.userInfo.sessionKey = true;
_this.data.userInfo.isAuthorized = true;
wx.setStorageSync("activityUserInfo", _this.data.userInfo);
_this.hideModal();
},
fail: function () {
//session_key 已经失效,需要重新执行登录流程
麻烦提供这种格式的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
流程拿出来,或者贴个代码片段看看
我是先判断 登录缓存中sessionKey是否存在 不存在重新授权 ,
又加了wx.checkSession 判断session_key是否过期 过期后也要重新授权
确认下是否是企业账号
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
麻烦提供出现问题的机型和微信版本,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
var _this = this;
if (e.detail.errMsg == 'getPhoneNumber:fail user deny') {
_this.onCancel();
return false;
}
//判断是否有sessionKey
if (!_this.data.userInfo.sessionKey) {
//commont.userAuthorization(_this,'authorlogin');
_this.setData({
is_authorized: false
})
return false;
} else {
wx.checkSession({
success: function () {
cardCommont.getWebchatMobile(e.detail.iv, e.detail.encryptedData, res => {
if (!res) {
commont.hint("该手机已被绑定", '');
} else {
_this.data.userInfo.mobile = res;
_this.data.userInfo.sessionKey = true;
_this.data.userInfo.isAuthorized = true;
wx.setStorageSync("activityUserInfo", _this.data.userInfo);
}
_this.hideModal();
})
},
fail: function () {
//session_key 已经失效,需要重新执行登录流程
//commont.userAuthorization(_this,'authorlogin');
_this.setData({
is_authorized: false
})
return false;
}
})
}
麻烦提供这种格式的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
流程拿出来,或者贴个代码片段看看
var _this = this;
if (e.detail.errMsg == 'getPhoneNumber:fail user deny') {
_this.onCancel();
return false;
}
//判断是否有sessionKey
if (!_this.data.userInfo.sessionKey) {
//commont.userAuthorization(_this,'authorlogin');
_this.setData({
is_authorized: false
})
return false;
} else {
wx.checkSession({
success: function () {
cardCommont.getWebchatMobile(e.detail.iv, e.detail.encryptedData, res => {
if (!res) {
commont.hint("该手机已被绑定", '');
} else {
_this.data.userInfo.mobile = res;
_this.data.userInfo.sessionKey = true;
_this.data.userInfo.isAuthorized = true;
wx.setStorageSync("activityUserInfo", _this.data.userInfo);
}
_this.hideModal();
})
},
fail: function () {
//session_key 已经失效,需要重新执行登录流程
//commont.userAuthorization(_this,'authorlogin');
_this.setData({
is_authorized: false
})
return false;
}
})
}
我是先判断 登录缓存中sessionKey是否存在 不存在重新授权 ,
又加了wx.checkSession 判断session_key是否过期 过期后也要重新授权
确认下是否是企业账号