数据存储区:已保存与已检索(日期时间值)

时间:2018-02-08 16:46:24

标签: node.js google-cloud-datastore

大家好!

我使用NodeJS客户端库在数据存储区中保存了一些日期时间和其他值。

在GCP中显示: enter image description here

但是当我得到那些价值观时(" fecDocumento"和" fecRegistro")。这将返回:

- fecDocumento: 1517806800000000
- fecRegistro: +050068-07-10T00:16:40.000Z

如果我将该值转换为Date vars。打印的值是:

- fecDocumento: Fri May 20 50067 03:00:00 GMT-0500 (Hora est. Pacífico, Sudamérica)
- fecRegistro: Mon Jul 09 50068 19:16:40 GMT-0500 (Hora est. Pacífico, Sudamérica)

任何建议都会很棒!

1 个答案:

答案 0 :(得分:2)

fecDocumento似乎是以微秒为单位的unix时间戳,大多数日期时间库期望unix时间戳以毫秒或秒为单位。看起来你的价值在出路时成倍增加

1517806800(以秒为单位的unix时间戳)相当于:02/05/2018 @ 5:00 am(UTC)

https://www.unixtimestamp.com/index.php