美文网首页
Vue使用轮询

Vue使用轮询

作者: Poppy11 | 来源:发表于2020-08-28 17:09 被阅读0次
    mounted() {
          this.initData(this.page)
          const timer = setInterval(() => {
            // 某些定时器操作
            this.initData(this.page)
          }, 10000);
          // 通过$once来监听定时器,在beforeDestroy钩子可以被清除。
          this.$once('hook:beforeDestroy', () => {
            clearInterval(timer);
          })
        },
    

    相关文章

      网友评论

          本文标题:Vue使用轮询

          本文链接:https://www.haomeiwen.com/subject/gzglsktx.html