gpt4 book ai didi

javascript - 无法让 _.debounce() 工作

转载 作者:行者123 更新时间:2023-11-28 14:41:11 31 4
gpt4 key购买 nike

我在尝试让 underscore.debounce() 工作时遇到问题。我在输入字段上附加了一个 keydown 事件监听器。我将执行一些操作,然后调用未调用的 debounce() 。我想知道为什么它不起作用?

我提供了两个样本。第一个我没有附上的_.debounce()因为内联不起作用。我附上的第二个_.debounce()因为内联正在工作。我不明白为什么非内联解决方案有效?

// This example does not ever call _.debounce()
$('input').on('keydown', onKeyDown);
function onKeyDown() {
console.log('performing some actions...');

_.debounce(function() {
console.log('debouncing'); // never called
}, 500);
}


// This example does call _.debounce()
$('input').on('keydown', _.debounce(function() {
console.log('debounce');
}, 500));

最佳答案

Debounce 返回一个需要调用的函数,在这种情况下,您正在创建一个函数但从未调用它。试试这个:

// This example does not ever call _.debounce()
var debounced = _.debounce(debounceStuff, 500);
$('input').on('keydown', onKeyDown);
function onKeyDown() {
console.log('performing some actions...');

debounced();
}

function debounceStuff() {
console.log('debouncing');
}

关于javascript - 无法让 _.debounce() 工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47911459/

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