客户手机升级7.0后,在安卓手机端运行十次有九次都获取不到用户当前的经纬度,报错 fail:timeout
备注:网络正常、GPS开始,用户已受权,permission的desc说明已添加。
请告知我出问题所在,客户都急疯了!!!!
代码片段
//获取当前定位
wx.getLocation({
type: 'gcj02',
success(res) {
//获得附近车辆
that.setData({ nowLongitude: res.longitude, nowLatitude: res.latitude })
that.getNearCars(res.longitude, res.latitude);
},
fail:function(e){
if (e.errMsg.indexOf('auth')>0){
wx.navigateTo({
url: '../userlocation/userlocation'
})
}
}
})
微信小程序开发问题解答
微信小程序开发者回答:
7.0版以前版本的微信没有发现过这个问题!!!!
微信小程序开发者回答:
是否跟这个问题一致呢?
获取地理位置超时bug,官方已解决,待修复
https://developers.weixin.qq.com/community/develop/doc/00008213ab42887892e778c765bc00
本文网址:http://www.91bianli.com/weixinxiaochengxu/17404.html