有个订单待支付,后端给一个时间戳1606981908怎么转成半小时的倒计时
1606981908
后端返回的是一个秒为单位的时间戳。
const target = 1606981908 * 1000 // 目标时间毫秒时间戳 function fn () { setTimeout(() => { if(target <= Date.now()) { // 定时结束 } else { // 递归自身 fn() } }, 1000) }
1.4m articles
1.4m replys
5 comments
57.0k users