首页 前端知识 errMsg: “getLocation:fail the api need to be declared in the requiredPrivateInfos field in app.json/

errMsg: “getLocation:fail the api need to be declared in the requiredPrivateInfos field in app.json/

2024-08-08 23:08:45 前端知识 前端哥 716 104 我要收藏

获取定位失败

  1. 在uni-app中,打开manifest.json的源码视图,添加获取地理位置的代码授权

"mp-weixin": {

"permission": {
            "scope.userLocation": {
                "desc": "你的位置信息将用于小程序位置接口的效果展示"
            }
        },
        "requiredPrivateInfos": ["getLocation", "chooseLocation"]

}

      2.在原生微信小程序中  在根目录下的app.json中添加授权

 "permission": {
    "scope.userLocation": {
      "desc": "你的位置信息将用于小程序位置接口的效果展示"
    }
  },
  "requiredPrivateInfos": [
    "chooseLocation",
    "getLocation"
  ],

转载请注明出处或者链接地址:https://www.qianduange.cn//article/15113.html
标签
评论
发布的文章

安装Nodejs后,npm无法使用

2024-11-30 11:11:38

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!