1. 程式人生 > 其它 >定時器以及銷燬

定時器以及銷燬

利用hook監聽鉤子函式 進行銷燬這種一般倒銷燬倒計時用的比較多 hook還可以監聽元件的鉤子函式 mounted(){ this.timer=setInterval(()=>{ this.getMyDate() },1000); this.$on('hook:destroyed',()=>{clearInterval(this.timer);}); },



//mounted(){ //this.timer=setInterval(()=>{this.getMyDate();},1000); //}, //destroyed(){ //clearInterval(this.timer); //}, methods:{ getMyDate(){ var_this=this; letyy=newDate().getFullYear(); letmm=newDate().getMonth()+1; letdd=newDate().getDate(); //letweek=newDate().getDay(); letweek='星期'+'日一二三四五六'.charAt(newDate().getDay()); lethh=newDate().getHours(); letmf=newDate().getMinutes()<10?'0'+newDate().getMinutes():newDate().getMinutes(); letss=newDate().getSeconds()<10?'0'+newDate().getSeconds():newDate().getSeconds(); _this.gettime=yy+'/'+mm+'/'+dd+''+week+''+hh+':'+mf+':'+ss; }