我目的是因為 table 每一筆資料都有個時間的數據~
我要把這個數據跟現在的數據相減後 取得還剩下多少時間
也能夠即時顯示在 table,剩餘 5 分 12 秒...之類的
{{ setTime(row) }}
setTime(row) {
setInterval(() => {
console.log(this.countDown(row))
}, 1000);
},
countDown(row) {
// 假設 return '123';
},
我想讓每一條 row 的 countDown 每一秒執行一次
雖然 console.log(this.countDown(row))
可以取到 123
但假設我 setTime 改成這樣,就無法取得 123?!
setTime(row) {
let abc = ``
setInterval(() => {
abc = this.countDown(row)
}, 1000);
return abc
},
and
setTime(row) {
setInterval(() => {
return this.countDown(row)
}, 1000);
},