1

我正在尝试使用 Ben Alman 的debounce 代码。我有以下代码,但我根本看不到任何执行。

onChange() {
        var this_ = this
        if (this.autoRefreshOn) {
            Cowboy.debounce(function(e) {
                console.log("debounce worked");
                this_.doSomethingFunction();
            }, 250);
        }
    }

这个onChange()函数是从multiselect这样的盒子里触发的:

<ss-multiselect-dropdown (ngModelChange)="onChange($event)"></ss-multiselect-dropdown>
<ss-multiselect-dropdown (ngModelChange)="onChange($event)"></ss-multiselect-dropdown>
<ss-multiselect-dropdown (ngModelChange)="onChange($event)"></ss-multiselect-dropdown>
<ss-multiselect-dropdown (ngModelChange)="onChange($event)"></ss-multiselect-dropdown>

当这些选择框被选中时,它们会连续触发onChange(),但我没有看到该debounce函数有任何执行。

我在网上找到的所有示例都实现了一个绑定到按钮按下或类似东西的去抖动功能。

4

1 回答 1

2

您可以直接向您的onChange()方法添加去抖动,并直接在模板中调用新创建的去抖动方法:

组件.ts

  limitedOnChange = this.debounce(this.onChange, 250);

  onChange(event) { console.log('change detected: ', event) }

  debounce(fn, delay) {
    let timer = null;
    return function () {
      const context = this, args = arguments;
      clearTimeout(timer);
      timer = setTimeout(function () {
        fn.apply(context, args);
      }, delay);
    };
  }

组件.html

  <ss-multiselect-dropdown (ngModelChange)="limitedOnChange($event)"></ss-multiselect-dropdown>
于 2017-10-06T20:24:50.540 回答