type User struct {
ID primitive.ObjectID `bson:"_id,omitempty"`
CreatedAt time.Time `bson:"created_at"`
UpdatedAt time.Time `bson:"updated_at"`
Name string `bson:"name"`
}
user := User{Name: "username"}
client.Database("db").Collection("collection").InsertOne(context.Background(), user)
如何在 golang 中使用上面代码中的自动 created_at 和 updated_at 以及 mongodb(仅限 mongodb 驱动程序)?目前它将为 created_at 和 updated_at 设置零时间 (0001-01-01T00:00:00.000+00:00)。
牧羊人nacy
相关分类