微信小程序开发时,会报错,无法获取当前位置,增加对应的代码就可以解决了。
getLocation:fail the api need to be declared in the requiredPrivateInfos field in app.json/ext.json
增加代码
在项目根目录中找到 manifest.json 文件,在左侧导航栏选择源码视图,找到mp-weixin 节点,在节点后面加上:对应信息
"permission": {
"scope.userLocation": {
"desc": "通过定位获取您当前所在地店铺信息"
}
},
"requiredPrivateInfos": [
"getLocation",
"onLocationChange",
"startLocationUpdateBackground",
"chooseAddress"
]