是否可以在简单地向输入添加去抖动之外使用此功能?或者我需要为此编写自己的功能吗?
我刚尝试过这样的事情,但它似乎不起作用:
this.$options.filters.debounce(this.search(),2000);
我的数据中的属性
timer: 0
去抖功能
// clears the timer on a call so there is always x seconds in between calls clearTimeout(this.timer); // if the timer resets before it hits 150ms it will not run this.timer = setTimeout(function(){ this.search() }.bind(this),150);