如何用 luxon 解析 UNIX 时间戳?

How to parse UNIX timestamps with luxon?

我尝试使用 luxon 库来摆脱 moment - 将 1615065599.426264 时间戳转换为 ISO 日期。

根据Online Epoch Converter这对应

GMT: Saturday, March 6, 2021 9:19:59.426 PM
Your time zone: Saturday, March 6, 2021 10:19:59.426 PM GMT+01:00
Relative: 3 days ago

去掉小数部分得到相同的结果。

使用luxon的代码:

let timestamp = 1615065599.426264
console.log(luxon.DateTime.fromMillis(Math.trunc(timestamp)).toISO())
console.log(luxon.DateTime.fromMillis(timestamp).toISO())
<script src="https://moment.github.io/luxon/global/luxon.min.js"></script>

这个结果是

1970-01-19T17:37:45.599+01:00
1970-01-19T17:37:45.599+01:00

可疑接近 Unix Epoch (1970-01-01 00:00:00).

我的错误在哪里?

所谓的 "Unix time" 计算自 1970 年 1 月 1 日以来的 的数量,而 Luxon(以及大多数 JavaScript)期望的值具有 毫秒分辨率。

将您的值乘以 1000 将得到预期结果:

> let timestamp = 1615065599.426264
undefined
> new Date(timestamp).toJSON()
'1970-01-19T16:37:45.599Z'
> new Date(timestamp * 1000).toJSON()
'2021-03-06T21:19:59.426Z'

Luxon 可以使用 .fromSeconds() 函数接受以秒为单位的 UNIX/纪元时间。然后,您可以使用 .toISO() 函数输出 ISO 格式。

在您的具体示例中:

const { DateTime } = require('luxon')

//your other code here 

const myDateTime = DateTime.fromSeconds(1615065599.426264)
const myDateTimeISO = myDateTime.toISO()

//outputs '2021-03-07T08:19:59.426+11:00'

参考:https://moment.github.io/luxon/#/parsing?id=unix-timestamps