我正在尝试在Go中编写一个可以正常运行的MongoDB查询,但是我在数组上遇到了困难。
使用JSON:
[
...
{
$project: {
acl: {
$reduce: {
input: "$a.accesses",
initialValue: [],
in: {
$concatArrays: ["$$value", "$$this"]
}
}
}
}
}]
但无法使用Go:
pipe := mongo.Pipeline{
...
bson.D{{Key: "$project", Value: bson.M{
"acl": bson.M{
"$reduce": bson.M{
"input": "$a.accesses",
"initialValue": bson.M{},
// None of the below works
"in": bson.M{"$concatArrays": bson.A{"$$value", "$$this"}},
// "in": bson.M{"$concatArrays": []interface{}{"$$value", "$$this"}},
// "in": bson.M{"$concatArrays": [2]string{"$$value", "$$this"}},
// "in": bson.M{"$concatArrays": []string{"$$value", "$$this"}},
// "in": bson.M{"$concatArrays": []interface{}{"$$value", "$$this"}},
// "in": bson.D{{Key: "$concatArrays", Value: []interface{}{"$$value", "$$this"}}},
},
},
}}},
}
错误:$concatArrays only supports arrays, not object
我是Go语言的新手,所以我很确定自己在某个地方缺少数组的概念。
答案 0 :(得分:1)
您为initialValue
提供的Go值是不是数组:
"initialValue": bson.M{},
代替:
"initialValue": []interface{}{},
或者:
"initialValue": bson.A{},