Android手机不会弹出授权框
需求上是要实现弹出用户授权框 用户在点击了“允许”后跳转到指定的页面,在iOS和开发者工具的模拟器上运行都是没问题的。在安卓手机上就会出现不弹出授权框 直接跳转到该页面的情况。
开发者工具版本:1.02.1803210 (当前最新)
代码如下:
wx.getUserInfo({
fail : res =>{
// debugger
console.log(res);
},
success: res => {
// debugger
app.globalData.userInfo = res.userInfo
this.setData({
userInfo: res.userInfo,
hasUserInfo: true
})
if (!app.globalData.isHasPhone){
//授权成功 跳转到某个页面
wx.navigateTo({
url: '…/xxx/xxx,
})
}
}
})