使用 Mgo 和 Go 查询具有日期范围的 MongoDB
您在使用以下方法查询具有日期范围的 MongoDB 集合时遇到了挑战Go 中的 Mgo 库。尽管在 MongoDB shell 中正常工作,但您的查询未返回预期结果。
要解决此问题,请考虑以下解决方案:
在 Go 中处理日期/时间值
Mgo 支持 time.Time 处理 BSON 日期。在 Go 结构体中,定义 SaleDate 字段,如下所示:
<code class="go">type Sale struct { ProductName string `bson:"product_name"` Price int `bson:"price"` SaleDate time.Time `bson:"sale_date"` }</code>
构造查询
定义结构体后,您可以使用 bson 构造查询。 M:
<code class="go">fromDate := time.Date(2014, time.November, 4, 0, 0, 0, 0, time.UTC) toDate := time.Date(2014, time.November, 5, 0, 0, 0, 0, time.UTC) var sales_his []Sale err = c.Find( bson.M{ "sale_date": bson.M{ "$gt": fromDate, "$lt": toDate, }, }).All(&sales_his)</code>
在此查询中,我们使用 $gt 和 $lt 运算符来指定日期范围。 fromDate 和 toDate 变量的类型为 time.Time。
通过实现这些更改,您应该能够使用 Mgo 和 Go 成功查询具有日期范围的 MongoDB 集合。
以上是如何使用 Mgo 和 Go 查询具有日期范围的 MongoDB 集合?的详细内容。更多信息请关注PHP中文网其他相关文章!