在下划线中使用 debounce 函数
我使用 underscore.js 来运行任务。
_.debounce(task, 100)
如何停止执行_.debounce
?
I use underscore.js to run task.
_.debounce(task, 100)
How stop executing _.debounce
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
_.debounce
不会执行任何操作,因此您无法阻止它。它返回一个负责去抖动的新函数。如果不想再使用,就使用原来的功能即可。
请参阅文档了解更多信息。
_.debounce
does not execute anything, so you cannot stop it. It returns a new function which takes care of the debouncing.If you don't want to use it anymore, just use the original function.
Have a look at the documentation for more information.
我假设您想放慢一项昂贵的任务,我已经在这里写了一篇文章 解释
_.debounce()
方法行为。干杯
PS....已存档帖子
I assume you want to slow down an expensive task, i've written a post here to explain the
_.debounce()
method behaviour.Cheers
PS....archived post