我在这里有几个问题。 我正在尝试node-restful。我有一个类似如下的集合
{
"_id": "59de06427f04284a1601e8bd",
"name": "Thabung",
"region": "59de03667f04284a1601e58f",
"__v": 1,
"branches": [
{
"name": "XYZ",
"_id": "59de070a7f04284a1601e8be",
"address": {
"street": "FairyStreet",
"country": "ABC",
"city": "BLL",
"zip": "123456"
},
"customerCodes": [
"ccd",
"xyz"
]
}
]
}
现在,如果我传递像apiendpoint/?branches.name=XYZ
这样的查询,它就可以了。但是,如果我尝试apiendpoint/?branches.customerCodes=ccd
它不匹配。请注意,branches.customerCodes
是一个数组
此外,我想匹配多个字段,如
apiendpoint/?fieldone=XYZ&fieldtwo=abc
,我该怎么办?