如何从具有两个条件的子文档数组中选择元素?

时间:2013-05-28 10:46:43

标签: mongodb mongoose

考虑以下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] }});

那我该怎么办?

1 个答案:

答案 0 :(得分:2)

您可以使用elemMatch查找包含与多个字词匹配的attributes元素的文档:

query.elemMatch(attributes, { key: 'name', 'references.value': 'Joe' })

但是,您无法将多个elemMatch调用链接在一起,因此,如果您想要多个这些调用,则需要使用$and$elemMatch显式构建查询对象而不是链接Query方法调用。