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

防抖和节流函数

时间:2019-11-20 19:43:57      阅读:73      评论:0      收藏:0      [点我收藏+]

标签:ttl   重绘   防止   cli   his   click   操作   size   ==   

防抖函数解决的问题:

防止误操作等多次输出点击等事件造成的多次通信请求。


防抖代码如下:

const debounce = (fn, delay = 1000) => {
  let timer = null;
  return (...args) => {
    console.log(`clear timer:`, this.timer);  //必须要写this.
    console.log(`_that===this :`, _that === this);
    clearTimeout(this.timer);
    this.timer = setTimeout(() => {
      fn.apply(this, args);
    }, delay);
    console.log(`timer value:`, this.timer);
  };
};

html占用调用

 <button onclick="debounce(clickFun)()">防抖点击</button>
function clickFun(){
alert(''点击");
}


节流函数解决的问题:

当dom布局频繁Resize时需要使用节流函数减少回流或重绘的次数。

节流函数代码如下:

 const throttle=(fn,delay=1000)=>{
      let flag=false;
      return (...args)=>{
        if(this.flag)return;
          this.flag=true;
          setTimeout(() => {
            fn.apply(this,args);
            this.flag=false;
          }, delay);
      }
    }

html中调用:

 <button onclick="throttle(clickFun)()">节流点击</button>
function clickFun(){
alert(''点击");
}

TODO:下次将写一篇关于前端性能优化的文章(三方面:通讯优化、首屏渲染优化、界面操作性能优化)

防抖和节流函数

标签:ttl   重绘   防止   cli   his   click   操作   size   ==   

原文地址:https://www.cnblogs.com/M-Silencer/p/11899808.html

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