问题模块 框架类型 问题类型 操作系统 工具版本
开发者工具 微信小程序 Bug Windows 1.02.1807120
{errMsg: "authorize:fail scope unauthorized", errCode: "-12007"}errCode:"-12007"
errMsg:"authorize:fail scope unauthorized"
__proto__:Object
用户机型:苹果7plus
代码部分:
wx.login({
success: function () {
wx.getUserInfo({
withCredentials: true,
success: function (res) {
//此处为获取微信信息后的业务方法
that.globalData.userInfo = res.userInfo;
typeof cb == "function" && cb(that.globalData.userInfo)
},
fail: function () {
//获取用户信息失败后。请跳转授权页面
wx.showModal({
title: '警告',
content: '尚未进行授权,请点击确定跳转到授权页面进行授权。',
success: function (res) {
if (res.confirm) {
console.log('用户点击确定')
wx.navigateTo({
url: '/pages/tologin/tologin',
})
}
},fail(e){
console.log("用户授权失败")
console.log(e);
}
})
}
})
}
});
微信小程序开发问题解答
微信小程序开发者回答:
最好贴出来按钮和JS的代码
微信小程序开发者回答:
贴出来了,指导下呗,谢谢
微信小程序开发者回答:
wx.getUserInfo早就废弃了,肯定不能用了啊,要用点按钮获取
微信小程序开发者回答:
这个要怎么改呢?
微信小程序开发者回答:
用 button 组件的获取用户信息接口,具体参考 button 组件
本文网址:http://www.91bianli.com/weixinxiaochengxu/49820.html