gpt4 book ai didi

javascript - 通过参数去抖动函数调用

转载 作者:行者123 更新时间:2023-11-29 10:33:22 25 4
gpt4 key购买 nike

David Walsh 有一个很棒的去抖实现 here .

// Returns a function, that, as long as it continues to be invoked, will not
// be triggered. The function will be called after it stops being called for
// N milliseconds. If `immediate` is passed, trigger the function on the
// leading edge, instead of the trailing.
function debounce(func, wait, immediate) {
var timeout;
return function() {
var context = this, args = arguments;
var later = function() {
timeout = null;
if (!immediate) func.apply(context, args);
};
var callNow = immediate && !timeout;
clearTimeout(timeout);
timeout = setTimeout(later, wait);
if (callNow) func.apply(context, args);
};
};

我在生产中使用它,效果很好。

现在我遇到了一些更复杂的去抖动需求。

我有一个事件调用带有如下参数的事件处理程序:$(elem).on('onSomeEvent', (e) => {handler(e.X)} );

我可以接受此事件被频繁触发并每秒调用处理程序 1000 次。我不需要对处理程序本身进行去抖动。但就我而言,对于每个 e.X,我希望它在一段时间内只被调用一次,比如 250 毫秒。

我正在考虑创建一个二维数组来保存 x 和上次运行时间,但我不想声明任何全局变量。

有什么想法吗?

* 编辑 *

阅读@Tim Vermaelen 的回答后,我已经实现了它,并且有效:

export function debounceWithId(func, wait, id, immediate?) {
var timeouts = {};
return function () {
var context = this, args = arguments;
var later = function () {
timeouts[id] = null;
if (!immediate) func.apply(context, args);
};
var callNow = immediate && !timeouts[id];
clearTimeout(timeouts[id]);
timeouts[id] = setTimeout(later, wait);
if (callNow) func.apply(context, args);
};
};

最佳答案

我经常使用的是:

var debounce = (function () {
var timers = {};

return function (callback, delay, id) {
delay = delay || 500;
id = id || "duplicated event";

if (timers[id]) {
clearTimeout(timers[id]);
}

timers[id] = setTimeout(callback, delay);
};
})(); // note the call here so the call for `func_to_param` is omitted

除了我可以在事件中添加唯一 ID 之外,我认为您的解决方案没有太大区别。如果我理解正确的话,你必须将其包装在 handler(e.X) 中。

debounce(func_to_param, 250, 'mousewheel');
debounce(func_to_param, 250, 'scrolling');

关于javascript - 通过参数去抖动函数调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41104199/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com