在下划线中使用 debounce 函数

发布于 2024-11-29 05:22:11 字数 118 浏览 1 评论 0原文

我使用 underscore.js 来运行任务。

_.debounce(task, 100)

如何停止执行_.debounce

I use underscore.js to run task.

_.debounce(task, 100)

How stop executing _.debounce?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浅暮の光 2024-12-06 05:22:11

_.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.

淡忘如思 2024-12-06 05:22:11

我假设您想放慢一项昂贵的任务,我已经在这里写了一篇文章 解释 _.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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文