MongoDB开发之 日期类型

2020-12-18  本文已影响0人  五月笙

MongoDB存储时间类型数据时,都是先转换为UTC时间,然后存储到数据库中。

Date objects are stored as a signed 64-bit integer representing the number of milliseconds since the Unix epoch (Jan 1, 1970).

日期类型

> Date()
Thu Dec 17 2020 10:43:48 GMT+0800 (CST)

> new Date()
ISODate("2020-12-17T02:43:56.943Z")

> ISODate()
ISODate("2020-12-17T02:44:01.458Z")

查看类型

> typeof Date()
string

> typeof new Date()
object

时间戳

> ISODate("2020-12-17T02:44:01.458Z").valueOf()
1608173041458

参考

MongoDB Documentation Date
MongoDB权威指南
MongoDB时间类型

上一篇下一篇

猜你喜欢

热点阅读