我试图得到MongoDB表中包含的唯一日期和年份的列表,当我得到正确数量的值时,所有的内容都是零。
简言之,我期待:
{ 12 1 },{ 1 6},{ 1 7}
但我得到了:
{ 0 0 },{ 0 0 },{ 0 0 }
我错过了什么?
代码和其他信息:
下面是我的MongoDB表:
{
"_id" : ObjectId("5fecc811698418c18231af40"),
"year" : 2020,
"month" : 12,
"day" : 30,
}
我用来包含数据的结构:
type Test struct {
Year int `bson:"year"`
Month int `bson:"month"`
}
最后,我的代码:
func getEntryDatesHandler(w http.ResponseWriter, r *http.Request) {
pipelineResult := make([]Test, 0)
pipeline := make([]bson.M, 0)
groupStage := bson.M{
"$group": bson.M{
"_id": bson.M{
"year": "$year",
"month": "$month",
},
},
}
pipeline = append(pipeline, groupStage)
data, err := collection.Aggregate(context.Background(), pipeline)
if err != nil {
log.Println("error: ", err.Error())
fmt.Errorf("failed to execute aggregation %s", err.Error())
return
}
err = data.All(context.Background(), &pipelineResult)
if err != nil {
log.Println(err.Error())
fmt.Errorf("failed to decode results", err.Error())
return
}
fmt.Println(pipelineResult)
}
我已经用robo3t验证了下面的查询是否有效,但是我试图直接转换它,结果返回值是{0}。
db.getCollection('entries').aggregate([
{$group: {
_id: null,
year: {$addToSet: '$year'},
mont: {$addToSet: '$month'}
}}
])
提前谢谢!