获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
wx.startLocationUpdate({ success (res){ wx.onLocationChange((result) => { console.log('Location',result) }) } }) wx.offLocationChange() wx.stopLocationUpdate({ success(res) { } }) 今天突然发现直接调wx.offLocationChange()然后再注册就不会有重复数据了,调 wx.offLocationChange((result) => {})就会有重复数据,本人也不是太清楚,刚接触小程序
wx.offLocationChange 不能用,现在解决了吗?wx.onLocationChange(function (res) { let { latitude, longitude, } = res console.log('距离---定时', latitude, longitude) }) wx.offLocationChange((res) => { console.log(res,'取消监听实时地理位置变化事件') }) 无法执行
2021-03-05