码迷,mamicode.com
首页 > 其他好文 > 详细

防抖函数

时间:2020-07-27 09:37:23      阅读:73      评论:0      收藏:0      [点我收藏+]

标签:VID   let   bsp   链接   strong   eth   deb   style   settime   

mounted() {
    const refresh = this.debounce(this.$refs.scroll.refresh, 500);

    this.$bus.$on("imgLoad", () => {
      refresh();
    });
  },
  methods: {
    /**
     * 防抖函数
     */
    debounce(fun, delay) {
      let timer = null;
      return function(...args) {
        if (timer) clearTimeout(timer);
        timer = setTimeout(() => {
          fun.apply(this, args);
        }, delay);
      };
    },
}

 

B站视频链接:https://www.bilibili.com/video/BV15741177Eh?p=174

防抖函数

标签:VID   let   bsp   链接   strong   eth   deb   style   settime   

原文地址:https://www.cnblogs.com/wayhome123/p/13382967.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!