函数的防抖和节流

最近在加强 JavaScript 基础的学习,这里整理一下函数的防抖(debounce)和节流(throttle)。

类型 概念 应用
防抖 触发事件后在 n 秒内函数只能执行一次并添加计时器,如果在 n 秒内又触发了事件,则会重新重置计时器 input 的输入建议等
节流 n 秒内触发事件仅执行一次函数 大段输入内容时记录输入历史

一、防抖 - debounce

非立即执行版:触发事件后函数不会立即执行,而是在 n 秒后执行,如果在 n 秒内又触发了事件,则会重新计算函数执行时间。
立即执行版:触发事件后函数会立即执行,然后 n 秒内不触发事件才能继续执行函数的效果。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/**
* @desc 函数防抖
* @param func 函数
* @param wait 延迟执行毫秒数
* @param immediate true 表示立即执行,false 表示非立即执行
*/
function debounce(func, wait, immediate) {
let timeout

return function() {
let context = this
let args = arguments

if (timeout) clearTimeout(timeout)
if (immediate) {
var callNow = !timeout
timeout = setTimeout(() => {
timeout = null
}, wait)
if (callNow) func.apply(context, args)
} else {
timeout = setTimeout(function(){
func.apply(context, args)
}, wait)
}
}
}

二、节流 - throttle

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/**
* @desc 函数节流
* @param func 函数
* @param wait 延迟执行毫秒数
* @param type 1 表示时间戳版,2 表示定时器版
*/
function throttle(func, wait, type) {
if (type === 1) {
let previous = 0
} else if (type === 2) {
let timeout
}

return function() {
let context = this
let args = arguments
if (type === 1) {
let now = Date.now()

if (now - previous > wait) {
func.apply(context, args)
previous = now
}
} else if ( type === 2) {
if (!timeout) {
timeout = setTimeout(() => {
timeout = null
func.apply(context, args)
}, wait)
}
}
}
}

参考资料

1、函数防抖和节流
2、JavaScript专题之跟着 underscore 学防抖
3、JavaScript专题之跟着 underscore 学节流

以上

随笔标题:函数的防抖和节流

随笔作者:刘先玉

发布时间:2019年11月12日 - 21:23:22

最后更新:2019年11月12日 - 21:23:22

原文链接:https://liuxianyu.cn/article/function-debounce-throttle.html