我有一個Date變量,並且我每秒更新一次以使其生效。將javascript/Type腳本的2個函數合併爲一個
現在,這裏是我的變量。
var stationdate = new Date(data.localTime);
我的Javascript代碼更新它每秒。
window.setInterval(function() {
stationdate = new Date(stationdate.setSeconds(stationdate.getSeconds() + 1));
}, 1000);
而且我腳本類型代碼,使其返回到角UI。
window.setInterval(() => this.time = stationdate, 1000);
我的問題。
如果兩個函數都是分離的,它就可以很好地工作。
但它停止工作,如果我把它們合併。
見下文。
window.setInterval(function() {
stationdate = new Date(stationdate.setSeconds(stationdate.getSeconds() + 1));
this.time = stationdate;
}, 1000);
我缺少脂肪ARROW類型的腳本的東西嗎?
什麼應該是正確的功能?
[Arrow功能VS函數聲明/表達式可能重複:他們是等價/ exchangeable?](https://stackoverflow.com/questions/34361379/arrow-function-vs-function-declaration-expressions-are-they-equivalent-exch) – Duncan