# Vue中使用debounce防抖基于Typescript {#vue中使用debounce防抖基于typescript}
# 一、抽象组件使用方式 {#一、抽象组件使用方式}
# 1、封装抽象组件(debounce.js 文件) {#_1、封装抽象组件(debounce-js-文件)}
import Vue from 'vue'
const debounce = (func, time, ctx, immediate) => {
let timer
const rtn = (...params) => {
clearTimeout(timer)
if (immediate) {
let callNow = !timer
timer = setTimeout(() => {
timer = null
}, time)
if (callNow) func.apply(ctx, params)
} else {
timer = setTimeout(() => {
func.apply(ctx, params)
}, time)
}
}
return rtn
}
Vue.component('Debounce', {
abstract: true,
props: ['time', 'events', 'immediate'],
created() {
this.eventKeys = this.events && this.events.split(',')
},
render() {
const vnode = this.$slots.default[0]
// 如果默认没有传 events,则对所有绑定事件加上防抖
if (!this.eventKeys) {
this.eventKeys = Object.keys(vnode.data.on)
}
this.eventKeys.forEach(key => {
vnode.data.on[key] = debounce(
vnode.data.on[key],
this.time,
vnode,
this.immediate
)
})
return vnode
}
})
# 2、组件使用方式 {#_2、组件使用方式}
-
引入全局组件
首先需要将 debounce.js 文件在入口文件(main.ts)中全局引入。当然也可以按照需要修改 debounce.js 文件,按需引入。
import Vue from 'vue' import App from './App.vue' ... import '@/xxx/debounce'
-
在模版中使用
其中time为必选参数。 event 和 immediate 参数都是可选参数。
如果组件下有多个事件绑定,那么 event 可以自定义需要进行防抖处理的事件。
如果需要立即执行的话,可以将 immediate 参数设置为 true。
# 二、普通使用方式 {#二、普通使用方式}
# 1、安装并引入 lodash 库,直接使用。 {#_1、安装并引入-lodash-库,直接使用。}
<template>
<div>
<button
@click="clickButton(123)"
@mousemove="clickButton(123)"
style="width:500px;height: 500px"
>click me!</button>
</div>
</template>
<script lang="ts">
import { Vue, Component } from 'vue-property-decorator'
import * as _ from 'lodash'
export default class Service extends Vue {
private clickButton = _.debounce(this.print, 500, {
leading: true,
trailing: false
})
private print(v: number) {
console.log(v)
}
}
</script>