微信小程序 兼容用户拒绝获取位置权限 用户拒绝权限处理

来源:互联网 发布:淘宝第三方代运营投诉 编辑:程序博客网 时间:2024/06/05 19:13
function getAuthor() {    wx.getSetting({        success(res) {            if(!res.authSetting['scope.userLocation']) {                wx.openSetting({                    success: (res) => {                        console.log(res)                        if(!res.authSetting['scope.userLocation']) {                            wx.showModal({                                title: '温馨提醒',                                content: '需要获取您的地理位置才能使用小程序',                                cancelText: '不使用',                                confirmText: '获取位置',                                success: function(res) {                                    if(res.confirm) {                                        getAuthor();                                    } else if(res.cancel) {                                        wx.showToast({                                            title: '您可点击左下角 定位按钮 重新获取位置',                                            icon: 'success',                                            duration: 3000                                        })                                    }                                }                            })                        }                                        }                })            }        }    })}
阅读全文
0 0
原创粉丝点击