如何销毁引用的API方法?
onShow: function () { wx.onAccelerometerChange( function (e) { console.log(e.x) console.log(e.y) console.log(e.z) if (e.x > 1 && e.y > 1) { wx.showToast({ title: '摇一摇成功' , icon: 'success' , duration: 2000 }) } })
onHide: function () { wx.onAccelerometerChange( function (e){ e = null ; }) } }) |
onHide销毁重力感应API方法的时候貌似没有起作用,请问如何正确销毁调用的方法呢?