如何在 MongoDB 中存储与 Node.JS 交叉兼容的 Date 对象?
How do I store Date objects in MongoDB that are cross compatible with Node.JS?
我在 API 堆栈中同时使用 Node.js 和 Golang。我需要在 MongoDB 中存储 Date
个对象,但在 Golang 中,我不确定如何创建一个在两种语言之间交叉兼容的 Date
对象。
如何在 golang 中创建 new Date()
以存储在 MongoDB 中?
您是否使用驱动程序连接到 mongo?很有可能它会负责 Go 中的 time.Time 类型和你的 mongo 日期类型之间的转换。
编辑:要清楚,请尝试:
t := time.Now()
并将 t 直接保存到您的 mongo 文档中
我在 API 堆栈中同时使用 Node.js 和 Golang。我需要在 MongoDB 中存储 Date
个对象,但在 Golang 中,我不确定如何创建一个在两种语言之间交叉兼容的 Date
对象。
如何在 golang 中创建 new Date()
以存储在 MongoDB 中?
您是否使用驱动程序连接到 mongo?很有可能它会负责 Go 中的 time.Time 类型和你的 mongo 日期类型之间的转换。
编辑:要清楚,请尝试:
t := time.Now()
并将 t 直接保存到您的 mongo 文档中