我正在尝试使用mongo-go-driver(用于Golang的MongoDB团队驱动程序)进行聚合,在这里看不到我做错了什么:
// group
group, e := bson.ParseExtJSONObject(`
{
"$group": {
"_id":{
"ProductCode":"$ProductCode",
"Dir":"$Dir",
"WharehouseID":"$WharehouseID"
}
}
}
`)
cursor, e := myCollection.Aggregate(
context.Background(),
group,
)
// e output: "(Location40324) Unrecognized pipeline stage name: '_id'"
这是mongodb错误,但是如果我在mongodb本机客户端中执行此查询,则会得到结果,并且不会发生错误。
答案 0 :(得分:1)
除了解析MongoDB Extended JSON的字符串以构建聚合管道以外,还可以构造bson.Array对象(类型):
例如:
pipeline := bson.NewArray(
bson.VC.DocumentFromElements(
bson.EC.SubDocumentFromElements(
"$group",
bson.EC.SubDocumentFromElements(
"_id",
bson.EC.String("ProductCode","$ProductCode"),
bson.EC.String("Dir","$Dir"),
bson.EC.String("WharehouseID","$WharehouseID"),
),
),
),
)
cursor, err := collection.Aggregate(context.Background(), pipeline)
以上代码段与当前的mongo-go-driver version 0.0.12兼容
答案 1 :(得分:0)
我明白了!
我犯了两个错误:
1-我必须解析JSON对象数组
2-关闭“`”之前没有新行
这是工作示例:
group, e := bson.ParseExtJSONArray(`[{
"$group": {
"_id":{
"ProductCode":"$ProductCode",
"Dir":"$Dir",
"WharehouseID":"$WharehouseID"
}
}
}]`)
cursor, e := myCollection.Aggregate(
context.Background(),
group,
)