如何将 Unix 时间戳转换为“2000-01-01”或“2000-05-24 20:00:00” Deno 中的格式还是反转?
我是 Deno 的新人。我想知道如何将 1646245390158
等 Unix 时间戳转换为 2000-01-01
或 2000-05-24 20:00:00
格式或反之亦然?
I am new in Deno. I want to know how can I convert Unix timestamp like 1646245390158
to 2000-01-01
or 2000-05-24 20:00:00
format or vice versa?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
除了标准的 Javascript 方式之外,Deno 还有一个名为 Ptera 的日期/时间库,可以是使用方式如下:
UNIX 时间戳是自 1970-01-01 00:00:00 UTC 以来的秒数,Javascript 时间戳以毫秒为单位有时在文档中,他们也将其称为 UNIX 时间戳或 UNIX Epoch 时间。
有关格式化选项的详细参考,请参阅此处。
Aside from the standard Javascript ways, there is a date/time library for Deno called Ptera, that can be used as follows:
A UNIX timestamp is the number of seconds since 1970-01-01 00:00:00 UTC, the Javascript timestamp is in milliseconds and sometimes in documentations, they also call this as a UNIX timestamp or UNIX Epoch time.
A detailed reference about the formatting options is available here.