js工具函数,自己封装一个节流函数
Posted 蜗牛老湿
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js工具函数,自己封装一个节流函数相关的知识,希望对你有一定的参考价值。
/**
*
* @param fn 节流的函数
* @param delay 延迟时间
* @returns 节流过的函数
*/
let debounceTimer =
export function debounce(fn, delay = 700)
clearTimeout(debounceTimer)
debounceTimer = setTimeout(() =>
fn()
, delay)
§ 使用非常简单
debounce(this.getQuery, 600)
§ 还有很多方法,请评论区留言接龙,写出你的方法。
以上是关于js工具函数,自己封装一个节流函数的主要内容,如果未能解决你的问题,请参考以下文章