methods中
setTime() //設置定時器
{
this.clearTimeSet=setInterval(() => {
this.webSocketClientOnopen();
}, 1000);
},
clearTime() //清除定時器
{
clearInterval(this.clearTimeSet);
}
mounted 中
mounted : function () //頁面加載完畢就開始加載定時器
{
this.setTime();
}
beforeDestroy() { //頁面關閉時清除定時器
clearInterval(this.clearTimeSet);
},