节流防抖

2021-05-10  本文已影响0人  gitJason

何谓节流和防抖?

1. 防抖

// debounce(函数名, 防抖时间)
function debounce(func, wait) {
    let timeout;
    return function() {
        const context = this;
        const args = arguments;
        if (timeout) clearTimeout(timeout);
        timeout = setTimeout(function() {
            func.apply(context, args)
        }, wait);
    }
}
// 有时希望立刻执行函数,然后等到停止触发n秒后,才可以重新触发执行
// debounce(函数名, 防抖时间, 是否立即执行)
function debounce(func, wait, immediate) {
    let timeout;
    return function() {
        const context = this; // 保存当前执行环境this
        const arges = arguments; // 保存当前函数类数组参数
        if (timeout) clearTimeout(timeout); // 如果存在定时器先清除
        // 立即执行
        if (immediate) {
            const callNow = !timeout;
            timeout = setTimeout(function() {
                timeout = null;
            }, wait)
            if (callNow) func.apply(context, arge)
        } else {
            timeout = setTimeout(function() {
                func.apply(context, arge)
            }, wait);
        }
    }
}
// 返回值版,immediate 必须为true
// debounce(函数名, 节流时间, true)
function debounce(func, wait, immediate) {
    let timeout, result;
    return function() {
        const context = this;
        const args = arguments;
        if (timeout) clearTimeout(timeout);
        if (immediate) {
            const callNow = !timeout;
            timeout = setTimeout(funciton() {
                timeout = null;
            }, wait)
            if (callNow) result = func.apply(context, args)
        }
        else {
            timeout = setTimeout(function() {
                func.apply(context, args)
            }, wait);
        }
        return result;
    }
}

2. 节流

原理:规定的时间内只能触发一次

function throttle(func, wait) {
    let context, args;
    let previous = 0;
    
    return function() {
        // 当前时间戳
        let now = +new Date(); // 相当于 let now = new Date().getTime()
        context = this;
        args = arguments;
        // 当前的时间戳 - 之前的时间戳
        if (now - previous > wait) {
            func.apply(context, args);
            previous = now;
        }
    }
}
function throttle(func, wait) {
    let timeout;
    return function() {
        const context = this;
        const args = arguments;
        if (!timeout) {
            timeout = setTimeout(function() {
                timeout = null;
                func.apply(context, args)
            }, wait)
        }
    }
}

防抖实例

// debounce.js

let timeout = null;

/**
 * 防抖原理:一定时间内,只有最后一次操作,再过wait毫秒后才执行函数
 * 
 * @param {Function} func 要执行的回调函数 
 * @param {Number} wait 延时的时间
 * @param {Boolean} immediate 是否立即执行 
 * @return null
 */
function debounce(func, wait = 500, immediate = false) {
    // 清除定时器
    if (timeout !== null) clearTimeout(timeout);
    // 立即执行,此类情况一般用不到
    if (immediate) {
        var callNow = !timeout;
        timeout = setTimeout(function() {
            timeout = null;
        }, wait);
        if (callNow) typeof func === 'function' && func();
    } else {
        // 设置定时器,当最后一次操作后,timeout不会再被清除,所以在延时wait毫秒后执行func回调方法
        timeout = setTimeout(function() {
            typeof func === 'function' && func();
        }, wait);
    }
}

export default debounce

上一篇 下一篇

猜你喜欢

热点阅读