我正在使用mongo和go将数据存储在数据库中。因此,有两个名为section和field的集合。部分集合中包含一个文档,例如:
{ "_id" : 2, "name" : "Message", "status" : 1 }
and字段集合包含如下文档:-
{
"_id" : 6,
"lead_section_id" : 2,
"help_text" : "This is a tool tip",
"name" : "Test11",
"status" : 9
}
{
"_id" : 7,
"lead_section_id" : 2,
"help_text" : "This is a tool tip",
"name" : "Test11",
"status" : 1
}
当我使用lead_section_id is 2
聚合来获取记录时,请查看包含$lookup
的字段收集文档,然后在我传递状态等于0时它将返回字段收集中的两个文档,1在查询中所以结果为什么会像下面这样
{
"id": 2,
"name": "Message",
"slug": "Name",
"status": 1,
"fields": [
{
"id": 6,
"lead_section_id": 2,
"field_type": "text",
"help_text": "This is a tool tip",
"name": "Test11",
"placeholder": "Enter the name",
"slug": "test11111111",
"status": 9
},
{
"id": 7,
"lead_section_id": 2,
"field_type": "text",
"help_text": "This is a tool tip",
"name": "Test11",
"placeholder": "Enter the name",
"slug": "test11asdasd111111",
"status": 1
}
]
}
使用golang进行查询
var queryIn []bson.M
queryIn = append(queryIn, bson.M{"_id": 2})
queryIn = append(queryIn, bson.M{"fields.status": bson.M{operator: []int{1,0}}})
// database connection
getCollection := sessionCopy.DB("Database").C("lead_section")
pipe := getCollection.Pipe([]bson.M{
bson.M{
"$lookup": bson.M{
"localField": "_id",
"from": "lead_field",
"foreignField": "lead_section_id",
"as": "fields"}},
bson.M{"$match": bson.M{"$and": queryIn}},
})
err = pipe.One(&data)
fmt.Println(data, err)
请问我将如何纠正该查询的任何建议。
答案 0 :(得分:0)
通过该查找,您可以将两个子文档都放入文档中,并且至少有一个与您的状态相匹配,因此是匹配的。因此,如果您要排除状态错误的子文档/字段,则需要将其展开并再次分组,或者投影和过滤字段数组。