(已解决)如果getLocation函数在安卓上调用的时候一直走到fail可以尝试调用两次getLocation函数 wx.getLocation ({ type: 'gcj02', success(res) { console.log(res); that.data.latitude = res.latitude that.data.longitude = res.longitude } }) wx.getLocation({ type: 'wgs84 ', success(res) { that.data.latitude = res.latitude that.data.longitude = res.longitude console.log("更新latitude:" + that.data.latitude); console.log("更新longitude:" + that.data.longitude); }, fail: function () { wx.showToast ({ title: "获取位置信息失败,请稍后再试", icon: 'none', duration: 2000 }) } })
安卓的wx.getLocation总是失败呢对于安卓系列的 手机 wx.Location( { } ) 一直不执行。 调试时 已经确保手机 获取位置 开关 是打开状态。
2019-12-20