vue 防抖与节流

vue 防抖与节流,第1张

一、防抖

简单化有效的处理如下:


    async handleAddDeploy() {
      this.$refs.formLabelAlign.validate(async valid => {
        if (!valid) return false;

        if (this.editLoading) return;
        this.editLoading = true;
        if (this.addFlag) {
          // 新增
          this.formLabelAlign = dataAddDefalutTime(this.formLabelAlign);
          await this.addDeploy();
        } else if (this.updateFlag) {
          // 修改
          await this.updateDeploy();
        } else if (this.reviewFlag) {
          // 审核
          await this.reviewDeploy();
        } else if (this.apperoveFlag) {
          // 审批
          await this.apperoveDeploy();
        }
        this.editLoading = false;
      });
    },

    async addDeploy() {
      this.handleSetCommentData();
      const res = await add(this.formLabelAlign);
      if (res.code === 200) {
        this.$message.success("新增成功");
        this.dialogVisible = false;

        this.dispatcherData = [];
        this.reviewerUserData = [];
        this.approverUserData = [];
        this.$emit("getPageList");
      }
    },

2、节流

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/944830.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-18
下一篇 2022-05-18

发表评论

登录后才能评论

评论列表(0条)

保存