时间:2019-05-05 来源:小程序工厂
w***:
有人帮我看一下吗
w***:
本地和线上的问题吗?
关于微信小程序名称审核时间问题
棉***:
有解决了吗?同样遇到这个问题了我在onLaunch获取授权信息,
wx.getSetting({
success: res => {
console.log('getSetting')
console.log(res);
//提前授权获取定位 -- 拒绝了就打开设置界面
if (!res.authSetting['scope.userLocation']){
wx.authorize({
scope: 'scope.userLocation',
success(res) {
// 用户已经同意微信小程序使用定位功能,后续调用 wx.getLocation 接口不会弹窗询问
// wx.getLocation({
// success(res){
// console.log('9999')
// }
// });
console.log(res)
},
fail(err){
console.log(err);
//用户决绝了跳转设置页面
wx.openSetting();
}
});
}
}
})
在index主页的onLoad还有调用wx.getsetting,然后允许了直接执行成功回调,未处理决绝的情况,发现每次拒绝后都没有反应了,只有再次进入微信小程序,或者是在开发者工具重新编译微信小程序,他会开启授权提醒
w***:
安卓未完善微信小程序信息会出现此问题,完毕,已解决~