问题描述
报错:errinfo {“errCode”: “0”, “errMsg”: “getLocation:fail the api need to be declared in the requiredPrivateInfos field in app.json/ext.json”}
解决方案:
需要在manifest.json
文件中配置requiredPrivateInfos
属性:
文章来源:https://www.toymoban.com/news/detail-785746.html
/* 小程序特有相关 */
"mp-weixin": {
"appid": "wx7537c85ad8296fa3",
"setting": {
"urlCheck": false,
"minified": true,
"es6": true
},
"usingComponents": true,
"permission": {
"scope.userLocation": {
"desc": "为了方便用户选择起始地和目的地"
}
},
"requiredPrivateInfos": ["getLocation", "chooseAddress", "chooseLocation", "choosePoi", "onLocationChange"]
},
参考文档:官方文档
需要注意的是:声明了模糊位置信息就无法声明精确位置信息文章来源地址https://www.toymoban.com/news/detail-785746.html
到了这里,关于uni微信小程序地理定位报错:getLocation:fail the api need to be declared in the requiredPrivateInfos field in app的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!