https://developers.weixin.qq.com/miniprogram/dev/api/location/wx.chooseLocation.html
代码片段:
onShareLocation(e){
var that = this
wx.chooseLocation({
success (res) {
that.setData({"location" : res})
},
fall (err){
console.log(err)
}
})
}
真机调用wx.chooseLocation后没有反应,console里也没有报错,开发者工具里是可以的:
系统版本:ios 16.0.2
WeChat版本:8.0.29
WeChatLib版本:2.26.1
前一段时间都是可以的,最近这两天测试了下不知道为啥不行了。。。是WeChatLib升级导致的吗?我也去把wx.chooseLocation申请通过了,但是好像还是不行
在配置里面增加这个:
"requiredPrivateInfos": ["getLocation", "chooseLocation"]
https://developers.weixin.qq.com/community/develop/doc/000a02f2c5026891650e7f40351c01