Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何停止由gun('something').on()gundb 处理程序触发的事件(取消订阅),以便它停止更新列表或更改列表。
gun('something').on()
在 0.5 及更高版本中,您只需调用.off().
.off()
但是,您不能在以前的版本中。不过有一个解决方法,这里是如何做到的:
var options = {}; gun.get('something').on(callback, options); options.on.off()
基本上,事件发射器作为属性附加到选项对象on,您可以.off()稍后调用它。我希望这有帮助!
on