小程序
小游戏
企业微信
微信支付
扫描小程序码分享
报错getLocation:fail privacy permission is not authorized
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
mp后台正式版隐私协议配置了吗
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
贴代码
getLocationBtn() {
console.log('getLocationBtn');
wx.getLocation({
type: 'wgs84',
success: (res) => {
console.log('Location', res)
wx.setStorageSync('latitude', res.latitude);
wx.setStorageSync('longitude', res.longitude);
qqmapsdk.reverseGeocoder({
console.log('nowCity', res.result.ad_info.city);
wx.setStorageSync('nowCity', res.result.ad_info.city);
this.setData({
nowCity: res.result.ad_info.city,
empowerShow: false, //授权位置弹窗
})
this.getBusinessData();
},
fail: (error) => {
// 输出错误日志
console.log('定位失败:', error.errMsg);
// 弹出提示框,引导用户重新授权
wx.showModal({
//低版本兼容
const version = wx.getAppBaseInfo().SDKVersion
if (compareVersion(version, '2.32.3') >= 0) {
console.log('new Version');
wx.getPrivacySetting({
success: res => {
console.log(res, res.needAuthorization) // 返回结果为: res = { needAuthorization: true/false, privacyContractName: '《xxx隐私保护指引》' }
if (res.needAuthorization) {
// 需要弹出隐私协议
secretPopStatus: true,
authenticationAgreementStatus: true
} else {
// 用户已经同意过隐私协议,所以不需要再弹出隐私协议,也能调用已声明过的隐私接口
}
fail: () => { },
complete: () => { }
// 如果希望用户在最新版本的客户端上体验您的小程序,可以这样子提示
title: '提示',
content: '当前微信版本过低,无法使用该功能,请升级到最新微信版本后重试。'
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
mp后台正式版隐私协议配置了吗
贴代码
getLocationBtn() {
console.log('getLocationBtn');
wx.getLocation({
type: 'wgs84',
success: (res) => {
console.log('Location', res)
wx.setStorageSync('latitude', res.latitude);
wx.setStorageSync('longitude', res.longitude);
qqmapsdk.reverseGeocoder({
success: (res) => {
console.log('nowCity', res.result.ad_info.city);
wx.setStorageSync('nowCity', res.result.ad_info.city);
this.setData({
nowCity: res.result.ad_info.city,
empowerShow: false, //授权位置弹窗
})
this.getBusinessData();
},
})
},
fail: (error) => {
// 输出错误日志
console.log('定位失败:', error.errMsg);
// 弹出提示框,引导用户重新授权
wx.showModal({
//低版本兼容
const version = wx.getAppBaseInfo().SDKVersion
if (compareVersion(version, '2.32.3') >= 0) {
console.log('new Version');
wx.getPrivacySetting({
success: res => {
console.log(res, res.needAuthorization) // 返回结果为: res = { needAuthorization: true/false, privacyContractName: '《xxx隐私保护指引》' }
if (res.needAuthorization) {
// 需要弹出隐私协议
this.setData({
secretPopStatus: true,
authenticationAgreementStatus: true
})
} else {
// 用户已经同意过隐私协议,所以不需要再弹出隐私协议,也能调用已声明过的隐私接口
}
},
fail: () => { },
complete: () => { }
})
} else {
// 如果希望用户在最新版本的客户端上体验您的小程序,可以这样子提示
wx.showModal({
title: '提示',
content: '当前微信版本过低,无法使用该功能,请升级到最新微信版本后重试。'
})
}
},