定时器刷新数据
mounted() {
this.getDataInfo();
this.loadAllDataTimer();
}
deactivated() {
clearInterval(this.timer);
this.timer = null;
}
beforeDestroy() {
clearInterval(this.timer);
this.timer = null;
}
private loadAllDataTimer() {
this.timer = setInterval(() => {
this.getDataInfo();
}, 10000);
}
TS定时刷新数据
于 2023-09-15 15:23:13 首次发布
本文描述了一个Vue组件如何在mounted、deactivated和beforeDestroy阶段使用定时器(setInterval)定期刷新数据(getDataInfo),并在组件卸载时清除定时器。
摘要由CSDN通过智能技术生成