vue 隔几秒自动请求接口 刷新页面

2023-09-14  本文已影响0人  匆白

初始化数据

data(){

    return {

        timer:null

    }

}

请求数据

mounted(){

    //刷新页面直接请求数据

    this.allGetMock();

    //之后3秒自动请求数据

    this.timer = setInterval(() => {

            this.allGetMock();

    },3000);

}

销毁定时器

beforeDestroy(){

    // 销毁定时器

    this.$once('hook:beforeDestroy',() =>{

        clearInterval(this.timer);

    })

}

上一篇 下一篇

猜你喜欢

热点阅读