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.
我在 java 中使用带有 morphia 的 mongoDB,我正在以日期格式保存一个值
保存前的值:Wed Mar 14 03:09:23 IST 2012 保存在 mongo 后:ISODate("2012-03-13T21:39:23Z")
Mongo在保存时添加了一些小时数,有没有办法保存这个值,因为它是日期格式
谢谢
mongodb将datetime保存为“UTC DateTime”,可以参考以下链接。
日期 - MongoDB
要使用您存储的日期,只需将其转换为您的本地时间。你会得到原件。