清除每隔5000毫秒请求一次接口的定时器(需求:每当我手动核销电子码,页面上的显示数据要实时更新到)
Posted cocoxia
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了清除每隔5000毫秒请求一次接口的定时器(需求:每当我手动核销电子码,页面上的显示数据要实时更新到)相关的知识,希望对你有一定的参考价值。
import * as electron from "@/api/serverData/getServerData"; methods:{ electron(){ //请求接口数据 var that = this; let _data = { couponStatus : that.$route.params.status, mealType : that.$route.params.type } electron.setCouponStatusList(_data).then(res => { //console.log(res) that.voucherList = res.data.coupon; } }, mounted() { this.electron(); timer = setInterval(this.electron, 5000); //每隔5000毫秒请求一次接口 }, destroyed () { clearInterval(timer); //清除定时器 }
以上是关于清除每隔5000毫秒请求一次接口的定时器(需求:每当我手动核销电子码,页面上的显示数据要实时更新到)的主要内容,如果未能解决你的问题,请参考以下文章