vue如何使用防抖和节流

防抖和节流是我们在前端开发过程中常用优化性能的方式

 vue 使用:

1.在公共方法中(如 public.js 中),加入函数防抖和节流方法

// 防抖
export function _debounce(fn, delay) {

    var delay = delay || 200;
    var timer;
    return function () {
        var th = this;
        var args = arguments;
        if (timer) {
            clearTimeout(timer);
        }
        timer = setTimeout(function () {
            timer = null;
            fn.apply(th, args);
        }, delay);
    };
}
// 节流
export function _throttle(fn, interval) {
    var last;
    var timer;
    var interval = interval || 200;
    return function () {
        var th = this;
        var args = arguments;
        var now = +new Date();
        if (last && now - last < interval) {
            clearTimeout(timer);
            timer = setTimeout(function () { //用户最后一次点击时间间隔小于设置时间执行
                last = now;
                fn.apply(th, args);
            }, interval);
        } else {
            last = now;
            fn.apply(th, args);
        }
    }
}

2.在需要使用的组件引用

import { _debounce } from "@/utils/public";

3.在 methods 中使用 

  methods: {
    // 举例函数
    changefield: _debounce(function(_type, index, item) {
        // do something ...
    }, 200)
  }


 

发布了452 篇原创文章 · 获赞 83 · 访问量 27万+

猜你喜欢

转载自blog.csdn.net/caseywei/article/details/103830789