使用mongoose查询只获取一个子文档

时间:2013-04-23 09:56:57

标签: javascript node.js mongodb mongoose

我有类似的数据结构:

var GrandGrandChild = mongoose.Schema({
    attribute: String,
    id: Number
});

var GrandChild = mongoose.Schema({
    children: [GrandGrandChild],
    id: Number,
    irrelevantAttribute: String
});

var Child = mongoose.Schema({
    children: [GrandChild],
    id: Number,
    irrelevantAttribute2: String
});

var Parent = mongoose.Schema({
    children: [Child],
    id: Number,
    irrelevantAttribute3: String
});

var GrandParent = mongoose.Schema({
    children: [Parent],
    id: Number,
    irrelevantAttribute4: String
});

这些是包含子文档的很多集合。 请注意,ID对于其兄弟姐妹是唯一的,但并非对具有相同模式的所有元素都是唯一的。

因此,一个祖父母可以拥有身份0的父母,另一个祖父母也可以拥有身份0的父母,但是一个祖父母不能拥有2个身份为0的父母。

保存的唯一模式是GrandParent模式,而mongoose / mongodb是这个祖父母的所有数据的一个很好的大单个文档。 (正是我要找的)

所以这是我的问题:我有一个GrandParent ID,Parent ID,Child ID,GrandChildID和GrandGrandChild ID,我想以某种方式获得所有这些ID所指向的GrandGrandChild对象。

丑陋的方式是,但目前我可以开始工作的唯一方法是创建一个获取GrandParent这个大文档的查询,并手动循环遍历所有数组以找到正确的Parent,然后再循环到找到合适的孩子,然后再次循环找到合适的孙子,然后再次循环,找到我需要的爷爷。

我的问题是,如何在mongoose中编写一个查询,该查询只返回grandgrandchild文档,或者只包含子属性的祖父文档,并且在子元素中只包含引用子对象的父对象指的是引用grandgrandchild对象的孙子对象,允许以下结果:

GRANDPARENT  PARENT      CHILD      GRANDCHILD   GRANDGRANDCHILD
grandparent.children[0].children[0].children[0].children[0].attribute;

我希望有人可以帮我解决这个问题,我得到的就是:

GrandParentModel.findOne(
    {
        "id" : 0,
        "children.id" : 0,
        "children.children.id" : 0,
        "children.children.children.id" : 0,
        "children.children.children.children.id" : 0
    },
    {"children.children.children.children.$" : 1}, callback);

这个问题的问题在于,不合情理的兄弟姐妹没有被删除。

我希望有人可以帮助我。

Hylke Bron

3 个答案:

答案 0 :(得分:3)

自从我提出这个问题以来已经有一段时间了,但我认为我找到了一种相当优雅的方式来处理这些结构。

在这种情况下,我将展示它如何仅适用于GrandParent,Parent和Child。

我没有在每个文档中存储子文档列表(GrandParent.children,Parent.children),而是创建了以下结构的唯一标识符:

Child.referenceId = {
    grandparent: "some key to the grandparent of the parent",
    parent: "some key to the parent",
    child: "key of this child"
};

Parent.referenceId = {
    grandparent: "some key to its grandparent",
    parent: "key of this parent"
}

GrandParent.referenceId = {
    grandparent: "key of this parent"
}

这将创建GrandParent>的层次结构。父母>子。

模型类似于以下内容:

var idStructure = {
    grandparent: { type: String, required: true },
    parent: { type: String, required: false },
    child: { type: String, required: false }
};

var GrandParent = mongoose.Schema({
    id: idStructure,
    irrelevantAttribute: String
});

var Parent = mongoose.Schema({
    id: idSructure,
    irrelevantAttribute: String
});

var Child = mongoose.Schema({
    id: idStructure,
    irrelevantAttribute: String
});

请注意,父不直接知道其父级,因为它们不存储为子文档。然而,通过referenceId,父母和孩子之间仍然存在联系。

在搜索GrandParent的整个familytree时,只需执行3个查询,然后正确连接它们:

// First find all children which belong to the grandparent
Child.find({"id.grandparent" : "some key to the grandparent"})
.exec(function(err, children)
{
     if(err)
         return;

     Parent.find({"id.grandparent" : "some key to the grandparent"})
     .exec(function(err, parents)
     {
         if(err)
             return;

         // Loop through the parents and children to connect them before returning to a client
         for(var i = 0; i < parents.length; i++)
         {
             var parent = parents[i];
             parent.children = [];
             // loop through the children to check if they belong to the current parent
             for(var j = 0; j < children.length; j++)
             {
                 var child = children[j];
                 if(parent.id.parent == child.id.parent)
                     parent.children.push(child);
             }
         }

         // After filling the children into the parents, get the grandparents and do the same for the parents and grandparents as done for the children and parents.
        GrandParent.find({"id.grandparent" : "some key to the grandparent"})
       .exec(function(err, grandparents)
       {
           // TODO: the same as done above (two loops, one loops the grandparents, other loops the parents
           // Once this is finished, we have a filled grandparent
       });

     });
});

上面的代码只会导致一个祖父母,父母充满了孩子。

不再找到祖父母的原因是因为祖父母的id应该是唯一的,因为祖父母的referenceId只有祖父母属性。

我希望我明确指出,因为通过这种方法,人们可以轻松地搜索一个特定的孩子,通过引用ID轻松获取其父级,并通过引用ID轻松获取其祖父母。

这可能有点复杂,但是一旦你自己想出这个方法,它就会直截了当。

Hylke

答案 1 :(得分:2)

很难让这种事情干净利落。

我没有找到关于这个主题的干净解决方案,但也许我可以帮助你解决循环问题。 你可以使用以下方法避免循环: var doc = parent.children.id(id); Finding a sub-document

我希望这对你有所帮助。 问候, 塞巴斯蒂安。

答案 2 :(得分:0)

这对我有用

      model.find({_id:args.id},{ commentList: { $elemMatch: { _id: todo.commentList[todo.commentList.length-1] } } },(err, todos) => {
         if (err) reject(err)
         else resolve(todos)
         console.log(todos);
      })

$elemMatch (projection)