vue里面清除定时器

2018-11-02  本文已影响0人  酸辣土豆丝g
unlocking(text) {
      if (text === "取消") {
        window.clearTimeout(this.time);
        this.$router.push("home");
        return;
      } 
      this.time = window.setTimeout(() => {
       this.percent++;
      }, 30);
},

用this定义一个变量就行了,开始我用var和let都不行。具体情况自己试试吧

上一篇 下一篇

猜你喜欢

热点阅读