lodash节流函数的使用

作用,在一定事件内限制事件的调用,例如我要控制刷屏事件为每秒1次

function timeHandler(obj) {
  var  timeHandler = _.throttle(function(e){
        console.log("timeHandler", arguments);
    }, 1000,{
        leading: true,
        trailing: false,
    })
}

你可能感兴趣的:(js)