getLocation:fail the api need to
2023-11-12 本文已影响0人
月夜一千
微信开发工具报:getLocation:fail the api need to be declared in the requiredPrivateInfos field in app.json/ext.json
手机上显示正常,能定位
经查 app.json 文件上需要添加 requiredPrivateInfos 。因为使用的是uniapp开发,在manifest.json上手动输入
"permission": {
"scope.userLocation": {
"desc": "为用户提供周边设施便捷查询"
}
},
// 需要添加这个
"requiredPrivateInfos": [
"getLocation"
],