Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果 mongodb 中的变量类型是 datetime,返回的变量类型是什么?
当我把它转换成json时,会显示什么?会是像unix时间戳这样的大数字还是什么?
文档说它是 UTC 日期时间。所以期望它是一个字符串,例如: 2010-10-28T23:07:11Z
2010-10-28T23:07:11Z
最好使用 mongos 本机 JavaScript Date 对象。
您可以使用 'getTime()' 方法或 'Date(milliseconds)' 将日期对象与 Unix 时间戳转换
请记住,由于 Unix 纪元,JavaScript Date 对象以毫秒为单位。