如何进行 mongo 聚合
How to do mongo aggregation
我正在尝试编写一个查询,该查询给出 creationDate 等于 365 的文档。
我在 mongo 指南针中尝试了聚合,但不确定如何在 Go 中转换它。以下是我在 mongo compass
中尝试过的内容
[{$project: {fileName:1,fileType:1,fileData:1,subtractDate: {$eq:[{$trunc:{$divide:[{$subtract:[newDate(),"$creationDate"]},1000*60*60*24]}},365]}}}]
据此,我创建了一个视图并将过滤器应用为 - {subtractDate:true}
下面是我的 golang 代码,请帮我看看我做错了什么,因为错误来了 - missing ',' before newline in composite literal syntax
matchStage := bson.D{{"$match", bson.D{{}}}}
groupStage := bson.D{{"$project": bson.D{{"fileName": 1,"fileType": 1,"fileData": 1,"subtractDate":bson.D{{"$trunc": bson.D{{"$divide": []bson.D{{"$subtract": []time.Time{time.Date(),"$creationDate"}},1000 * 60 * 60 * 24}}}}}}}}}
myCollection := client.Database("dbname").Collection("collectionName")
filterCursor2,err = myCollection.Aggregate(ctx,mongo.Pipeline{matchStage,groupStage})
在mongo聚合中可以使用golang类型
agg := []map[string]interface{}{
map[string]interface{}{
"$project": map[string]interface{}{
"fileName":1,
"fileType":1,
"fileData":1,
"subtractDate": map[string]interface{}{
"$trunc": map[string]interface{}{
"$divide": []interface{}{
map[string]interface{}{
"$subtract": []interface{}{time.Now(), "$creationDate"},
},
1000*60*60*24,
},
},
},
},
},
map[string]interface{}{
"$match": map[string]interface{}{
"subtractDate": 365,
},
},
}
只需将聚合选项放入集合的聚合方法中即可
cur, err := DB.Collection("collectionName").Aggregate(context.TODO(), agg)
if err != nil {
log.Println(err.Error())
}
然后获取结果
var result []map[string]interface{}
for cur.Next(context.TODO()) {
var elem map[string]interface{}
err := cur.Decode(&elem)
if err != nil {
log.Println(err.Error())
} else {
result = append(result, elem)
}
}
if err := cur.Err(); err != nil {
log.Println(err.Error())
}
log.Println(result)
我正在尝试编写一个查询,该查询给出 creationDate 等于 365 的文档。 我在 mongo 指南针中尝试了聚合,但不确定如何在 Go 中转换它。以下是我在 mongo compass
中尝试过的内容[{$project: {fileName:1,fileType:1,fileData:1,subtractDate: {$eq:[{$trunc:{$divide:[{$subtract:[newDate(),"$creationDate"]},1000*60*60*24]}},365]}}}]
据此,我创建了一个视图并将过滤器应用为 - {subtractDate:true}
下面是我的 golang 代码,请帮我看看我做错了什么,因为错误来了 - missing ',' before newline in composite literal syntax
matchStage := bson.D{{"$match", bson.D{{}}}}
groupStage := bson.D{{"$project": bson.D{{"fileName": 1,"fileType": 1,"fileData": 1,"subtractDate":bson.D{{"$trunc": bson.D{{"$divide": []bson.D{{"$subtract": []time.Time{time.Date(),"$creationDate"}},1000 * 60 * 60 * 24}}}}}}}}}
myCollection := client.Database("dbname").Collection("collectionName")
filterCursor2,err = myCollection.Aggregate(ctx,mongo.Pipeline{matchStage,groupStage})
在mongo聚合中可以使用golang类型
agg := []map[string]interface{}{
map[string]interface{}{
"$project": map[string]interface{}{
"fileName":1,
"fileType":1,
"fileData":1,
"subtractDate": map[string]interface{}{
"$trunc": map[string]interface{}{
"$divide": []interface{}{
map[string]interface{}{
"$subtract": []interface{}{time.Now(), "$creationDate"},
},
1000*60*60*24,
},
},
},
},
},
map[string]interface{}{
"$match": map[string]interface{}{
"subtractDate": 365,
},
},
}
只需将聚合选项放入集合的聚合方法中即可
cur, err := DB.Collection("collectionName").Aggregate(context.TODO(), agg)
if err != nil {
log.Println(err.Error())
}
然后获取结果
var result []map[string]interface{}
for cur.Next(context.TODO()) {
var elem map[string]interface{}
err := cur.Decode(&elem)
if err != nil {
log.Println(err.Error())
} else {
result = append(result, elem)
}
}
if err := cur.Err(); err != nil {
log.Println(err.Error())
}
log.Println(result)