vue怎么获取获取每天00:00-02:00的时间戳
时间: 2023-07-25 10:41:16 浏览: 101
获取时间戳方法
在Vue中,可以使用JavaScript中的Date对象来获取每天 00:00-02:00 的时间戳。具体步骤如下:
1. 获取当前时间戳:`const now = Date.now()`
2. 获取当天的 00:00 时间戳:
```
const today = new Date()
today.setHours(0)
today.setMinutes(0)
today.setSeconds(0)
today.setMilliseconds(0)
const today_start = +today
```
3. 判断当前时间是否在 00:00-02:00 之间,如果是,则返回当天的 00:00 到 02:00 时间戳,如果不是,则返回昨天的 00:00 到 02:00 时间戳。
```
let start_timestamp, end_timestamp
if (now < today_start + 2 * 3600 * 1000) {
// 当前时间在 00:00-02:00 之间
start_timestamp = today_start - 24 * 3600 * 1000
end_timestamp = today_start
} else {
// 当前时间在 02:00-24:00 之间
start_timestamp = today_start
end_timestamp = today_start + 2 * 3600 * 1000
}
```
其中,`start_timestamp` 表示每天 00:00 的时间戳,`end_timestamp` 表示每天 02:00 的时间戳。
注意:以上代码中使用的时间均为本地时间,如果需要使用 UTC 时间,请使用 `Date.UTC()` 方法获取当前时间。
阅读全文