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.
时间戳值将通过 Node.js 和 Mongoose 传输到 MongoDB 上的 ISODate 类型。
ex. 123456789012 ---> ISODate(xxxx)
但是当我使用 Python 和 pymongo 时,它将被保存并在 MongoDB 上仍为 Number 类型。
ex. 123456789012 ---> 123456789012 ...
如何通过 Python 在 MongoDB 上的 ISODate 类型中插入时间戳值?
您应该将其转换为datetime.datetime对象,然后保存。pymongo,我假设您正在使用它,会将其转换为适合您的格式。
datetime.datetime
pymongo