想在mongodb node.JS中通过_id获取引用集合的对象

时间:2017-01-05 11:45:04

标签: node.js mongodb mongoose mongodb-query aggregation-framework

我希望通过引用id集合获取特定记录的所有细节。

{
"_id" : ObjectId("586c8bf63ef8480af89e94ca"),
"createdDate" : ISODate("2017-01-04T05:45:26.945Z"),
"branch" : {
    "$ref" : "branchmst",
    "$id" : "5864ac80fa769f09a4881791",
    "$db" : "eviral"
    },
"__v" : 0
}

这是我的收藏记录。我需要从“branchmst”集合中获取所有细节,其中“_id”是“5864ac80fa769f09a4881791”。

2 个答案:

答案 0 :(得分:1)

您的收藏集是使用手动引用的示例,即在另一个文档DBref中包含一个文档的_id字段。然后,Mongoose可以发出第二个查询来根据需要解析引用的字段。

第二个查询是使用具有 $lookup 运算符的聚合方法,该运算符将在同一数据库中对“branchmst”集合执行左外连接以过滤来自用于处理的“已加入”集合:

MyModel.aggregate([
    { "$match": { "branch": "5864ac80fa769f09a4881791" } },
    {
        "$lookup": {
            "from": "branchmst",
            "localField": "branch",
            "foreignField": "_id",
            "as": "branchmst"
        }
    },
    { "$unwind": "$branchmst" }
])

您可以在Mongoose中使用 populate() 函数,前提是您已在模型定义中明确定义了参数,即

var mongoose = require('mongoose');
var ObjectId = mongoose.Schema.Types.ObjectId;

// define the main schema
var mySchema = mongoose.Schema({
    createdDate: { type: Date, default: Date.now },
    branch: { type: ObjectId, ref: 'Branch' }  
})

// define the branch schema
var branchSchema = mongoose.Schema({
    name: String,
    address: String  
})

// compile the models
var MyModel = mongoose.model('MyModel', mySchema),
    Branch = mongoose.model('Branch', branchSchema);

// populate query
MyModel.find({ "branch": "5864ac80fa769f09a4881791" })
       .populate('branch')
       .exec(function (err, docs) {
           //console.log(docs[0].branch.name);
           console.log(docs);
       });

答案 1 :(得分:0)

如果你保存了你的分支。$ id作为Schema Object类型。

 yourRecord.find({}).populate(branch.$id).exec(function(err, data){
  console.log(data)
})