💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
vue中定时器设置和关闭页面时关闭定时器 methods中 ~~~ setTime() //设置定时器 { this.clearTimeSet=setInterval(() => { console.log(111); }, 1000); }, clearTime() //清除定时器 { clearInterval(this.clearTimeSet); } ~~~ mounted 和新建beforeDestroy: ``` mounted : function () //页面加载完毕就开始加载定时器 { this.setTime(); }, beforeDestroy() { //页面关闭时清除定时器 clearInterval(this.clearTimeSet); }, ```