uni.getLocation({
type: 'gcj02',
success: function(res) {
this.longitude = res.longitude
this.latitude = res.latitude
console.log('当前位置的经度:' + res.longitude);
console.log('当前位置的纬度:' + res.latitude);
},
fail(res) {
console.log(res, 'res2')
console.log(777)
}
})
调用uni.getLocation报这个
隐私协议加上一下
出现这个报错是因为你的小程序使用到了getLocation隐私接口,但是没有在[mp后台 -> 设置 -> 服务内容声明 -> 用户隐私保护指引]中声明收集该接口对应的隐私类型【收集你的位置信息】,建议尽快补充该隐私类型声明,待审核通过后,过一段时间再试。