小程序
小游戏
企业微信
微信支付
扫描小程序码分享
微信公众号网页使用wx.getLocation获取定位,提示getLocation:fail:timeout,用户反映手机重启后就好了,但是过一段时间又会发生,是什么原因?
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
你好,排查网络问题,是否是获取基站 ID 失败,让用户打开Wi-Fi开关(不需要连接上)试试呢?
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
getWxLocation() {
wx.getLocation({
type: "gcj02", // 默认为wgs84的gps坐标,如果要返回直接给openLocation用的火星坐标,可传入'gcj02'
success: (res) => {
if (res.errMsg == "getLocation:ok") {
// console.log(res);
this.latlng.lat = res.latitude
this.latlng.lng = res.longitude
}else {
this.$toast.fail("定位异常!");
}
},
fail: (err)=> {
// err 提示出来是 getLocation:fail:timeout
// console.log("失败");
});
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
你好,排查网络问题,是否是获取基站 ID 失败,让用户打开Wi-Fi开关(不需要连接上)试试呢?
getWxLocation() {
wx.getLocation({
type: "gcj02", // 默认为wgs84的gps坐标,如果要返回直接给openLocation用的火星坐标,可传入'gcj02'
success: (res) => {
if (res.errMsg == "getLocation:ok") {
// console.log(res);
this.latlng.lat = res.latitude
this.latlng.lng = res.longitude
}else {
this.$toast.fail("定位异常!");
}
},
fail: (err)=> {
// err 提示出来是 getLocation:fail:timeout
// console.log("失败");
},
});
},