首页 > 其他 > 详细

基本的防抖和节流

时间:2021-04-28 22:11:33      阅读:29      评论:0      收藏:0      [点我收藏+]

防抖:就是在某个时间段内,多次触发事件,只执行一次函数,如果在这个时间内再次触发,则时间重新计算

防抖应用场景:from 表单疯狂提交

节流:就是控制事件在每隔多长时间执行一次,如果在时间段内再次触发事件,函数也不会执行

应用场景:百度输入框实时搜索

实施代码:

fangdou() {
      if (this.flag) {
        console.log(‘防抖学习‘)
        this.flag = false
        clearTimeout(this.timer)
        this.timer = setTimeout(() => {
          this.flag = true
        }, 5000)
      }
    },
    jieliu() {
      if (this.flag) {
        clearTimeout(this.timer)
        this.timer = setTimeout(() => {
          console.log(this.val, ‘每隔两秒‘)
          this.timer = false
        }, 1000)
      }
    }

 

基本的防抖和节流

原文:https://www.cnblogs.com/qinyuanchun/p/14715135.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!