Vue 中如何停止每隔 10 秒调用一次的方法?
vue 中每隔 10 秒调用方法的解决方案
如何在离开 Vue 页面时停止执行每隔 10 秒调用一次的方法?
解答:
要在离开页面时停止调用方法,需要保存对 setInterval 函数的引用,然后在页面销毁前调用 clearInterval 函数。
具体步骤如下:
- 定义一个变量来保存 setInterval 函数的引用:
let timer = null;
- 在页面创建时,使用 setInterval 函数开始调用方法:
timer = setInterval(() => { setTimeout(this.aaa(), 0); }, 10000);
- 在页面销毁前,使用 beforeDestroy 生命周期钩子,调用 clearInterval 函数停止调用方法:
beforeDestroy() { clearInterval(timer); }
这样,当离开页面时,beforeDestroy 钩子将被触发,clearInterval 函数将被调用,停止对 setInterval 函数的调用。
以上就是Vue 中如何停止每隔 10 秒调用一次的方法?的详细内容,更多请关注其它相关文章!