调用后onLocationChange,onUnload 中不执行offLocationCh怎么办?
startLocat: function () {
wx.onLocationChange(res => {
console.log('监听实时', res)
var latitude = res.latitude
var longitude = res.longitude
this.setData({
latitude: latitude,
longitude: longitude,
})
})
},
onUnload: function () {
wx.offLocationChange((res) =>{
console.log('取消监听', res)
})
},