在使用uni-app开发微信小程序的时候,
想要通过uni.chooseLocation
获取用户地理位置的时候出现
chooseLocation:fail the api need to be declared in the requiredPrivateInfos
field in app.json/ext.json 这样的错误。
打开manifest.json选择源码视图,找到mp-weixin节点,添加requiredPrivateInfos的配置,源码如下
"mp-weixin" : { "requiredPrivateInfos" : [ "chooseLocation", "getLocation" ] }