const _locationChangeFn = (res) => {
const latitude = res.latitude
const longitude = res.longitude
header.latitude = latitude
header.longitude = longitude
log("获取位置时间")
wx.offLocationChange(_locationChangeFn)
requesAjax()
}
wx.startLocationUpdate({
success(res) {
wx.onLocationChange(_locationChangeFn);
},
fail(res) {
clickShowModel("提示", "对不起,没有您的地理位置,壹启程将无法为您提供正常服务4", "设置", "取消", function (r) {
if (r) {
wx.openSetting({
success(res) {
if (res.authSetting["scope.userLocation"]) {
requesAjax();
}
}
})
}
})
}
})
是否是网络问题
楼主,请问下,有解决了吗?