Mongoose在其引用模型的Model by字段上嵌套查询

时间:2013-10-15 12:03:31

标签: node.js mongodb mongoose populate

似乎在stackoverflow上有关于这个主题的很多Q / A,但我似乎无法在任何地方找到确切的答案。

我有什么:

我有公司和个人模型:

var mongoose = require('mongoose');
var PersonSchema = new mongoose.Schema{
                        name: String, 
                        lastname: String};

// company has a reference to Person
var CompanySchema = new mongoose.Schema{
                        name: String, 
                        founder: {type:Schema.ObjectId, ref:Person}};

我需要什么:

找到所有姓氏“Robertson”的人创立的公司

我尝试了什么:

Company.find({'founder.id': 'Robertson'}, function(err, companies){
    console.log(companies); // getting an empty array
});

然后我认为Person不是嵌入式的,而是引用的,所以我使用populate来填充创始人Person,然后尝试使用find和'Robertson'姓氏

// 1. retrieve all companies
// 2. populate their founders
// 3. find 'Robertson' lastname in populated Companies
Company.find({}).populate('founder')
       .find({'founder.lastname': 'Robertson'})
       .exec(function(err, companies) {
        console.log(companies); // getting an empty array again
    });

我仍然可以使用Person的id作为String来查询公司。但这并不是我想要的,因为你可以理解

Company.find({'founder': '525cf76f919dc8010f00000d'}, function(err, companies){
    console.log(companies); // this works
});

3 个答案:

答案 0 :(得分:35)

您不能在单个查询中执行此操作,因为MongoDB不支持联接。相反,你必须将它分成几个步骤:

 
// Get the _ids of people with the last name of Robertson.
Person.find({lastname: 'Robertson'}, {_id: 1}, function(err, docs) {

    // Map the docs into an array of just the _ids
    var ids = docs.map(function(doc) { return doc._id; });

    // Get the companies whose founders are in that set.
    Company.find({founder: {$in: ids}}, function(err, docs) {
        // docs contains your answer
    });
});

答案 1 :(得分:5)

我对这个问题已经很晚了,但是我只是在寻找一个类似的答案,我想我会分享我的想法,以防有人出于同样的原因找到这个。

我找不到通过猫鼬查询实现此目标的方法,但我认为它可以使用MongoDB aggregation pipeline

要获取您要查询的查询,您可以执行以下操作:

const result=await Company.aggregate([
    {$lookup: {
        from: 'persons', 
        localField: 'founder', 
        foreignField: '_id', 
        as: 'founder'}
    },
    {$unwind: {path: '$founder'}},
    {$match: {'founder.lastname', 'Robertson'}}
]);

$lookup的行为类似于.populate(),将引用替换为实际数据。尽管它可以用来匹配多个文档,但是它返回一个数组。

$unwind从数组中删除项目,在这种情况下,只会将单个元素数组变成字段。

$match然后按照听起来的样子进行操作,只返回与查询匹配的文档。如果需要,您还可以执行比严格相等更复杂的匹配。

通常,聚合管道的工作方式是不断过滤/修改匹配文档的每一步,直到您拥有所需的内容为止。

我还没有检查性能,但是我绝对喜欢让Mongo来做而不是在服务器端过滤掉不必要的结果。

我猜唯一的缺点是结果将只是对象数组而不是猫鼬模型,因为管道通常会更改文档的形状。因此,您将无法对返回的数据使用模型的方法。

答案 2 :(得分:4)

如果有人在最​​近的时间遇到​​过这种情况,Mongoose现在支持使用名为Populate的功能加入类似功能。

来自Mongoose文档:

Story.findOne({ 
    title: 'Casino Royale' 
}).populate('author').exec(function (err, story) {
    if (err) return handleError(err);
    console.log('The author is %s', story.author.name);
    // prints "The author is Ian Fleming"
});

http://mongoosejs.com/docs/populate.html