JS节流函数

vue组件动态绑定属性值 — vue技术交流群(864583465) (此群满可加2群:111822407)

废话不多说直接上代码

export const myDebounce = function (func, delay = 100) {
  return function () {
    let self = this
    let args = arguments
    if(window.lastDoneTime) {
      let now = new Date().getTime()
      clearTimeout(window.timer)
      if(now - window.lastDoneTime >= delay) {
        window.lastDoneTime = now
        func && func.apply(self, args)
      } else {
        window.timer = setTimeout(() => {
          func && func.apply(self, args)
        }, delay)
      }
    } else { // 首次
      window.lastDoneTime = new Date().getTime()
      func && func.apply(self, args)
    }
  }
}

在vue中演示一个鼠标移动的示例

<template>
  <div class="demo" @mousemove="moveTest">
  
  </div>
</template>

<script lang="ts">
import { Vue, Component } from 'vue-property-decorator'

const myDebounce = function (func, delay = 100) {
  return function () {
    let self = this
    let args = arguments
    if(window.lastDoneTime) {
      let now = new Date().getTime()
      clearTimeout(window.timer)
      if(now - window.lastDoneTime >= delay) {
        window.lastDoneTime = now
        func && func.apply(self, args)
      } else {
        window.timer = setTimeout(() => {
          func && func.apply(self, args)
        }, delay)
      }
    } else { // 首次
      window.lastDoneTime = new Date().getTime()
      func && func.apply(self, args)
    }
  }
}

@Component({})
export default class extends Vue {
  moveTest(e){
    let date = new Date().getTime()
    console.log('触发时间 --- ' + date)
    myDebounce(this.doneIt)(date)
  }

  doneIt(arg){
    console.log(arg + '----- 执行时间')
  }
}
</script>
<style lang="scss">
.demo {
	width: 100%heigh: 100%;
}
</style

结果参考

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值