vue中setInterval的清除

兩種清除setInterval的方式:this

方案一:spa

data() {            
    return {                              
        timer: null  // 定時器名稱          
    }        
},
mouted() {
    this.timer = (() => {
    // 某些操做
    }, 1000)
},
beforeDestroy() {
    clearInterval(this.timer);        
    this.timer = null;
}

方案二(官方推薦):經過$once事件偵聽器器在定義完定時器以後的位置來清除定時器。code

方案一有兩個潛在的問題:blog

  • 它須要在這個組件實例中保存這個 timer,若是能夠的話最好只有生命週期鉤子能夠訪問到它。這並不算嚴重的問題,可是它能夠被視爲雜物。
  • 咱們的創建代碼獨立於咱們的清理代碼,這使得咱們比較難於程序化地清理咱們創建的全部東西。
mounted() {
    const timer = setInterval(() =>{                    
    // 某些定時器操做                
    }, 500);            
    // 經過$once來監聽定時器,在beforeDestroy鉤子能夠被清除。
    this.$once('hook:beforeDestroy', () => {            
        clearInterval(timer);                                    
    })
}
相關文章
相關標籤/搜索