throttle 节流 debounce防抖的用法
含义:
throttle 节流:在触发过程中,限制每几秒执行一次;
debounce 防抖:在触发过程中,不执行,直到不再触发时才执行
用途:
限制函数执行的频率
使用方法:
安装:npm install throttle-debounce --save
在需要用到节流或防抖的页面引入:
import { throttle, debounce} from 'throttle-debounce'
实例:
throttle 节流:在触发过程中,限制每几秒执行一次;
debounce 防抖:在触发过程中,不执行,直到不再触发时才执行
限制函数执行的频率
安装:npm install throttle-debounce --save
import { throttle, debounce} from 'throttle-debounce'
实例: