获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
const listener = function (res) { console.log(res) } wx.onLocationChange(listener) wx.offLocationChange(listener) // 需传入与监听时同一个的函数对象 wx.offLocationChange() 这个方法的参数,不是传关闭之后的回调函数,而是传递监听时的函数。也就是需要关闭的监听函数对象
wx.offLocationChange不起作用吗?https://developers.weixin.qq.com/miniprogram/dev/api/location/wx.offLocationChange.html 在停止的时候我是这样调用的: [图片] 但是wx.offLocationChange中没有打印内容, 再次启动的时候定位监听的时候,出现数据重复 [图片]
2024-03-27