考虑以下Mongoose架构:
new mongoose.Schema({
attributes: [{
key: { type: String, required: true },
references: [{
value: { type: String, required: true },
reference: { type: mongoose.Schema.Types.ObjectId, required: true }
}]
}
});
遵循此架构的文档如下所示:
{
attributes: [
{
key: 'age', references: [{ value: '35', reference: 298387adef... }]
},
{
key: 'name', references: [{
value: 'Joe', reference: 13564afde...,
value: 'Joey', reference: 545675cdab...,
}
...
]
}
我想根据以下条件选择属性:
- 关键是name
例如
- 键name
的属性至少有一个值为Joe
的引用。
理想情况下,我想将这些条件中的许多条件进行AND链接。例如,{'name': 'Joe'}
和{'age': '35'}
。
我似乎无法找到做Mongoose的方法。我尝试了以下Mongoose查询而没有任何好的结果(它给出误报或漏报):
// First query
query.where('attributes.key', attribute.key);
query.where('attributes.references.value', attribute.value);
// Second
query.and([{ 'attributes.key': attribute.key }, { 'attributes.$.references.value': attribute.value }]);
// Third
query.where('attributes', { 'key': attribute.key, 'references.value': { $in: [attribute.value] }});
那我该怎么办?
答案 0 :(得分:2)
您可以使用elemMatch
查找包含与多个字词匹配的attributes
元素的文档:
query.elemMatch(attributes, { key: 'name', 'references.value': 'Joe' })
但是,您无法将多个elemMatch
调用链接在一起,因此,如果您想要多个这些调用,则需要使用$and
和$elemMatch
显式构建查询对象而不是链接Query
方法调用。