我有一份文件如下 -
{
"_id" : "580eef0e4dcc220df897a9cb",
"brandId" : 15,
"category" : "air_conditioner",
"properties" : [
{
"propertyName" : "A123",
"propertyValue" : "A123 678"
},
{
"propertyName" : "B123",
"propertyValue" : "B123 678"
},
{
"propertyName" : "C123",
"propertyValue" : "C123 678"
}
]
}
在此,properties
数组可以包含多个元素。
当我通过我的API执行搜索时,
理想情况下,我会在properties
请求的正文中传递一个类似于POST
的数组 -
{
"brandId" : 15,
"category" : "air_conditioner",
"properties" : [
{
"propertyName" : "A123",
"propertyValue" : "A123 678"
},
{
"propertyName" : "B123",
"propertyValue" : "B123 678"
},
{
"propertyName" : "C123",
"propertyValue" : "C123 678"
}
]
}
我有一个结构来接收和解码这些信息 -
type Properties struct {
PropertyName string `json:"propertyName" bson:"propertyName"`
PropertyValue string `json:"propertyValue" bson:"propertyValue"`
}
type ReqInfo struct {
BrandID int `json:"brandId" bson:"brandId"`
Category string `json:"category" bson:"category"`
Properties []Properties `json:"properties" bson:"properties"`
}
我还可以对各种$and
执行mongodb properties
操作,并且只有当它们全部匹配时,才会返回文档。
这里的问题是properties
数组中的元素数量不固定。
我需要能够发送
{
"brandId" : 15,
"category" : "air_conditioner",
"properties" : [
{
"propertyName" : "A123",
"propertyValue" : "A123 678"
}
]
}
并检索所有匹配的文档(不只是一个)。
我尝试使用for循环创建可变大小bson.M
,具体取决于作为输入接收的properties
数组的大小,但无法正确执行此操作!
应如何处理?
答案 0 :(得分:1)
我能够通过单独构建$and
部分来实现这一目标 -
var AndQuery []map[string]interface{}
for i := 0; i < len(body.Properties); i++ {
log.Println(body.Properties[i])
currentCondition := bson.M{"properties": bson.M{"$elemMatch": bson.M{"propertyName": body.Properties[i].PropertyName, "propertyValue": body.Properties[i].PropertyValue}}}
AndQuery = append(AndQuery, currentCondition)
}
然后我的查询看起来像 -
c.Find(bson.M{"brandId": body.BrandID, "category": body.Category, "$and": AndQuery})