在vue中使用防抖函數的方法:1.新建utils.js文件,定義防抖函數;2.創建vue.js項目;3.使用import方法引入utils.js文件;4.使用methods方法調用防抖函數;
具體方法如下:
1.首先,新建一個utils.js文件,并在文件中定義一個防抖函數;
export default {
debounce(fn, delay = 300) {
var timer;
return function() {
var args = arguments;
if(timer) {
clearTimeout(timer);
}
timer = setTimeout(() => {
fn.apply(this, args);
}, delay);
};
}
}
2.防抖函數定義好后,在vue-cli中創建一個vue.js項目;
vue create project-name
3.vue.js項目創建好后,在項目中使用import方法引入utils.js文件;
import utils from "@/js/utils";
4.最后,引入utils.js文件后,使用methods方法即可調用防抖函數;
export default {
methods: {
search: utils.debounce(function() {
let v = this;
let serchURL = `/movie/search?q=${v.searchText}&start=0&count=10`;
v.$axios
.get(serchURL)
.then(response => {
v.processSearchData(response.data);
})
.catch(error => {
console.log(error)
})
.finally()
})
}
}