gpt4 book ai didi

javascript - _lodash debounce 不去抖动

转载 作者:行者123 更新时间:2023-12-02 13:50:08 24 4
gpt4 key购买 nike

这是我的代码( Angular 2):

<button (click)="click()">GO!</button>

debouncedFunc = _.debounce(()=>{
console.log('bam')
}, 1000, {"leading":true})

click(){
this.debouncedFunc()
}

这会触发每个事件,而不会出现去抖动。我只想每秒达到最大端点一次并忽略所有其他端点。我缺少什么?谢谢。

最佳答案

发布此文后 10 秒就明白了。有趣的是,这是如何运作的。需要声明的所有选项:

 <button (click)="click()">GO!</button>

debouncedFunc = _.debounce(()=>{
console.log('bam')
}, 1000, {"leading":true,"trailing":false})

click(){
this.debouncedFunc()
}

关于javascript - _lodash debounce 不去抖动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41067003/

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