小程序
小游戏
企业微信
微信支付
扫描小程序码分享
在我使用小程序中的持续定位功能时。
我延迟加载设置了1分钟定位一次。前面几次都定位成功了,有返回XY坐标。但是经过6-7次以后定位就全部返回坐标为0 这是什么原因导致的。。我是做的真机调试。。开发版
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
data: {
motto: '正在获取用户定位信息',
userInfo: {},
hasUserInfo: false,
time: 1,
level:'',
networkType:'',
canIUse: wx.canIUse('button.open-type.getUserInfo'),
insertLocation: "/HyApi/hylocation/insertLocation",
},
//事件处理函数
bindViewTap: function() {
wx.navigateTo({
url: '../logs/logs'
})
},
onLoad: function () {
let that = this;
wx.getBatteryInfo({
success(res) {
that.setData({
level:res.level
})
console.log('电量:',res.level)
console.log('是否正在充电:', res.isCharging)
}
})
wx.getNetworkType({
success: function (res) {
that.setData({
networkType:res.networkType
})
console.log(res)
}
})
this.locationWz();
},
locationWz(){
let that = this;
let num = 1;
wx.startLocationUpdateBackground({
success(res) {
console.log('开启后台定位', res)
wx.onLocationChange(function(res) {
if(num==1){
console.log('定位回调', res)
util.getNoLoad(that.data.insertLocation, { latitude: res.latitude,longitude: res.longitude,openId:wx.getStorageSync("openId"),networkStatus:that.data.networkType,electricQuantity:that.data.level}, function (res) {
console.log("aaa:" + res.data);
})
if(res.latitude!=undefined){
wx.stopLocationUpdate(function(res) {
console.log('停止定位', res)
})
that.setTime();
}
}
num= 0;
})
},
fail(res) {
console.log('开启后台定位失败', res)
}
})
},
setTime(){
let that = this
wx.stopLocationUpdate();
setTimeout(function () {
wx.getLocation({
type: 'wgs84',
success (res) {
console.log("wgs84:",res)
const latitude = res.latitude
const longitude = res.longitude
const speed = res.speed
const accuracy = res.accuracy
}
})
that.locationWz()
}, 600000) //延迟时间 这里是1分
},
})
提供出现问题的微信号,出现问题的时间点(精确到分钟)