代码
<view class="position" bindtap="xxx">
xxx(){
wx.getSetting({
success: (res) => {
var statu = res.authSetting;
if (!statu['scope.userLocation']) {
// 没授权
logger.log('goSelectMall reject');
log.error('getSetting fail1',JSON.stringify(res));
wx.showToast({
title: ''+JSON.stringify(res),
},5000);
} else {
}
...
iphone x iOS 15.1必现, 其它安卓手机也必现,从今天早上开始出现,普通微信没有问题
报错信息如下:
{"errMsg":"getSetting:ok","clientInfo":{"wxdataQueueTimestamp":1643265172385,"isConfirm":false,"wxlibCallbackTimestamp":1643265172836,"beginCGITimestamp":1643265172387,"queueLength":0,"beginCGITimestampAfterConfirm":18446744073709552000,"wxdataDequeueTimestamp":1643265172387,"CGICallbackTimestampAfterConfirm":18446744073709552000,"CGICallbackTimestamp":1643265172834},"authSetting":{"scope.werun":true,"scope.address":true,"scope.invoice":true,"scope.invoiceTitle":true}}
楼主解决了吗