//debouncer.js
/*
This is the typical debouncer function that receives
the "callback" and the time it will wait to emit the event
*/
function debouncer (fn, delay) {
var timeoutID = null
return function () {
clearTimeout(timeoutID)
var args = arguments
var that = this
timeoutID = setTimeout(function () {
fn.apply(that, args)
}, delay)
}
}
/*
this function receives the element where the directive
will be set in and also the value set in it
if the value has changed then it will rebind the event
it has a default timeout of 500 milliseconds
*/
module.exports = function debounce(el, binding) {
if(binding.value !== binding.oldValue) {
el.oninput = debouncer(function(){
el.dispatchEvent(new Event('change'))
}, parseInt(binding.value) || 500)
}
}
定义此文件后,您可以转到 main.js 导入它并使用导出的函数。
//main.js
import { createApp } from 'vue'
import debounce from './directives/debounce' // file being imported
const app = createApp(App)
//defining the directive
app.directive('debounce', (el,binding) => debounce(el,binding))
app.mount('#app')
它完成了,当你想在一个输入上使用这个指令时,你只需要像这样做,没有导入或任何东西。
//Component.vue
<input
:placeholder="filter by name"
v-model.lazy="filter.value" v-debounce="400"
/>
6条答案
按热度按时间jxct1oxe1#
我没有找到任何好的解决方案,因为我想在我的模板中看到我的绑定,所以我决定分享我的解决方案。我写了一个简单的debounce函数,并使用以下语法绑定行为:
模板语法:
w3nuxt5m2#
你好,第一次在这里回答问题,所以请尽可能多地纠正我的答案,我会很感激。我认为最漂亮和最轻松的解决方案是创建一个全局指令,您可以在所有表单中使用它。
你首先用你的指令创建文件,例如 debouncer.js
然后创建去抖动函数
定义此文件后,您可以转到 main.js 导入它并使用导出的函数。
它完成了,当你想在一个输入上使用这个指令时,你只需要像这样做,没有导入或任何东西。
如果您选择这样做,那么v-model.lazy指令非常重要,因为默认情况下它会在输入事件上更新绑定的属性,但是设置该指令会使它等待更改事件。这是我们在debounce函数中发出的事件。这样做将停止v模型更新自身,直到您停止写入或超时(您可以在指令的值中设置)。我希望这是可以理解的。
axr492tv3#
utugiqy64#
使用Lodash,您可以获得更简单的解决方案:
sbdsn5lh5#
你可以试试这个
4xrmg8kj6#
以下是Lodash和脚本设置语法的示例,使用观察器触发去抖API调用: