搜尋

首頁  >  問答  >  主體

javascript - setTimeout取代setInterval實作倒數計時 報錯

最近使用vue2建置專案時遇到活動倒數計時的需求,在使用setTimeout模擬setInterval的效果時,出了點問題(當然使用後者可以很輕鬆的解決問題)

let myTimer = setTimeout( () => {
    if (diffTimer > 0) {
        hours = Math.floor(diffTimer/3600);
        minutes = Math.floor((diffTimer/60)%60);
        seconds = Math.floor(diffTimer%60);
        this.hours = hours > 9 ? hours : '0' + hours;
        this.minutes = minutes > 9 ? minutes : '0' + minutes;
        this.seconds = seconds > 9 ? seconds : '0' + seconds;
    } else {
        clearTimeout(myTimer);
    }
    diffTimer--;
    setTimeout(arguments.callee,1000);
},1000)

結果報瞭如下錯誤:

#貌似在es6的嚴格模式下找不到arguments物件...

ringa_leeringa_lee2775 天前754

全部回覆(1)我來回復

  • 高洛峰

    高洛峰2017-05-19 10:40:45

    使用箭頭函數不可以使用arguments對象,該對像在函數體內不存在。如果要用,可以用Rest參數代替。

    http://es6.ruanyifeng.com/?se...

    使用注意點 箭頭函數有幾個使用注意點。

    (1)函數體內的this對象,就是定義時所在的對象,而不是使用時所在的對象。

    (2)不可以當作建構函數,也就是說,不可以使用new指令,否則會拋出錯誤。

    (3)不可以使用arguments對象,該對像在函數體內不存在。如果要用,可以用Rest參數代替。

    (4)不可以使用yield指令,因此箭頭函數不能用作Generator函數。

    上面四點中,第一點尤其值得注意。 this物件的指向是可變的,但在箭頭函數中,它是固定的。

    回覆
    0
  • 取消回覆