标签:http blog 数据 article tps 退出 str 刷新数据 计时
在前端开发中,往往会遇到页面需要实时刷新数据的情况,给用户最新的数据展示。
如果需要数据实时更新,我们自然是需要使用定时器,不断的调用接口数据,会相对的消耗内存。
data(){
return {
intervalId:null
}
},
methods:{
// 定时刷新数据函数
dataRefreh() {
// 计时器正在进行中,退出函数
if (this.intervalId != null) {
return;
}
// 计时器为空,操作
this.intervalId = setInterval(() => {
console.log("刷新" + new Date());
this.initData(); //加载数据函数
}, 5000);
},
// 停止定时器
clear() {
clearInterval(this.intervalId); //清除计时器
this.intervalId = null; //设置为null
},
},
created(){
this.dataRefreh();
},
destroyed(){
// 在页面销毁后,清除计时器
this.clear();
}
本文转自:https://blog.csdn.net/qq_41115965/article/details/102722540
标签:http blog 数据 article tps 退出 str 刷新数据 计时
原文地址:https://www.cnblogs.com/aurora-ql/p/13300202.html