收藏
回答

getLocation:fail api scope is not declared in ?

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报这个

回答关注问题邀请回答
收藏

2 个回答

  • 那一抹笑😃 穿透阳光
    那一抹笑😃 穿透阳光
    2023-12-26

    隐私协议加上一下

    2023-12-26
    有用
    回复
  • Hlxuan.
    Hlxuan.
    2023-12-25

    出现这个报错是因为你的小程序使用到了getLocation隐私接口,但是没有在[mp后台 -> 设置 -> 服务内容声明 -> 用户隐私保护指引]中声明收集该接口对应的隐私类型【收集你的位置信息】,建议尽快补充该隐私类型声明,待审核通过后,过一段时间再试。

    2023-12-25
    有用
    回复
登录 后发表内容