防抖函数:debounce

节流函数:throttle

Vue应用:


watch: {
  addInfo: {
    handler: _.debounce(
      function(newVal, oldVal) {
        console.log(newVal, oldVal)
 
 
        this.submitValidate = this.infoChanged()
      },
      1000,
      { leading: true }
    ),
    deep: true,
  },
},
最后修改:2023 年 03 月 06 日
如果觉得我的文章对你有用,请随意赞赏