防抖和节流

防抖

        在事件被触发n秒后再执行回调,如果在这n秒内又被触发,则重新计时。这通常用于输入框搜索、窗口大小调整等场景,确保在用户停止输入或操作后才执行处理函数,以避免频繁的计算或请求。

//防抖
export function debounce(fn: Function, delay: number) {
  const timer = ref<any>(null)
  return function (...args: any[]) {
    if (timer.value) {
      clearTimeout(timer.value)
    }
    timer.value = setTimeout(() => {
      // ...args 传递 fn 上的参数
      fn && fn(...args)
    }, delay)
  }
}

方法调用 

<script setup lang="ts">
import { debounce } from '@/utils/toolbar'
// 搜索框调用 debounce 方法
const handleInput = debounce((value: string) => {
  console.log(value)
}, 700)
</script>

<template>
<el-input clearable @input="handleInput" />
</template>

 

节流

        在固定的时间间隔内只执行一次函数。这意味着,无论在这个时间间隔内触发多少次事件,函数都只会被执行一次。这通常用于控制滚动事件、鼠标移动事件等高频事件的响应频率。

// 节流
export function throttle(fn: Function, delay: number) {
  const flag = ref(true)
  return function (...args: any[]) {
    if (!flag.value) {
      return
    }
    flag.value = false
    setTimeout(() => {
      // ...args 传递 fn 上的参数
      fn && fn(...args)
      flag.value = true
    }, delay)
  }
}

 方法调用

<script setup lang="ts">
import { throttle } from '@/utils/toolbar'

// 调用 throttle 方法
const handleClick= throttle(() => console.log('throttle'), 1000)
</script>

<template>
<el-button type="primary" @click="handleClick">按钮</el-button>
</template>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值