创建后如何在mongoose中填充子文档?

cho*_*ovy 56 mongoose mongodb node.js express

我正在为item.comments列表添加评论.我需要在我在响应中输出之前获取comment.created_by用户数据.我该怎么做?

    Item.findById(req.param('itemid'), function(err, item){
        var comment = item.comments.create({
            body: req.body.body
            , created_by: logged_in_user
        });

        item.comments.push(comment);

        item.save(function(err, item){
            res.json({
                status: 'success',
                message: "You have commented on this item",

//how do i populate comment.created_by here???

                comment: item.comments.id(comment._id)
            });
        }); //end item.save
    }); //end item.find
Run Code Online (Sandbox Code Playgroud)

我需要在res.json输出中填充comment.created_by字段:

                comment: item.comments.id(comment._id)
Run Code Online (Sandbox Code Playgroud)

comment.created_by是我的mongoose CommentSchema中的用户引用.它目前只给我一个用户ID,我需要填充所有用户数据,密码和盐字段除外.

以下是人们提出的架构:

var CommentSchema = new Schema({
    body          : { type: String, required: true }
  , created_by    : { type: Schema.ObjectId, ref: 'User', index: true }
  , created_at    : { type: Date }
  , updated_at    : { type: Date }
});

var ItemSchema = new Schema({
    name    : { type: String, required: true, trim: true }
  , created_by  : { type: Schema.ObjectId, ref: 'User', index: true }
  , comments  : [CommentSchema]
});
Run Code Online (Sandbox Code Playgroud)

jsa*_*nen 71

为了填充引用的子文档,您需要显式定义ID引用的文档集合(例如created_by: { type: Schema.Types.ObjectId, ref: 'User' }).

鉴于此引用已定义且您的架构也已明确定义,您现在可以populate像往常一样调用(例如populate('comments.created_by'))

概念证明代码:

// Schema
var mongoose = require('mongoose');
var Schema = mongoose.Schema;

var UserSchema = new Schema({
  name: String
});

var CommentSchema = new Schema({
  text: String,
  created_by: { type: Schema.Types.ObjectId, ref: 'User' }
});

var ItemSchema = new Schema({
   comments: [CommentSchema]
});

// Connect to DB and instantiate models    
var db = mongoose.connect('enter your database here');
var User = db.model('User', UserSchema);
var Comment = db.model('Comment', CommentSchema);
var Item = db.model('Item', ItemSchema);

// Find and populate
Item.find({}).populate('comments.created_by').exec(function(err, items) {
    console.log(items[0].comments[0].created_by.name);
});
Run Code Online (Sandbox Code Playgroud)

最后请注意,这populate仅适用于查询,因此您需要先将项目传递给查询,然后调用它:

item.save(function(err, item) {
    Item.findOne(item).populate('comments.created_by').exec(function (err, item) {
        res.json({
            status: 'success',
            message: "You have commented on this item",
            comment: item.comments.id(comment._id)
        });
    });
});
Run Code Online (Sandbox Code Playgroud)

  • 好吧,我有一个小bug,填充('comments.created_by username')不起作用,但.populate('comments.created_by','username')没有.另外我注意到我可以使用-salt -password_hash来不返回那些字段.谢谢你!接受了答案. (4认同)

use*_*684 42

自编写原始答案以来,这可能已经改变,但看起来您现在可以使用Models populate函数来执行此操作,而无需执行额外的findOne.请参阅:http://mongoosejs.com/docs/api.html#model_Model.populate.您可以像在findOne中一样在保存处理程序中使用它.

  • 这个答案比@jsalonen更准确.这样您就不必再次获取文档了. (6认同)
  • 参考文章非常有用,谢谢.一个例子更进一步. (2认同)

小智 6

@ user1417684和@ chris-foster是对的!

从工作代码中摘录(没有错误处理):

var SubItemModel = mongoose.model('subitems', SubItemSchema);
var ItemModel    = mongoose.model('items', ItemSchema);

var new_sub_item_model = new SubItemModel(new_sub_item_plain);
new_sub_item_model.save(function (error, new_sub_item) {

  var new_item = new ItemModel(new_item);
  new_item.subitem = new_sub_item._id;
  new_item.save(function (error, new_item) {
    // so this is a valid way to populate via the Model
    // as documented in comments above (here @stack overflow):
    ItemModel.populate(new_item, { path: 'subitem', model: 'subitems' }, function(error, new_item) {
      callback(new_item.toObject());
    });
    // or populate directly on the result object
    new_item.populate('subitem', function(error, new_item) {
      callback(new_item.toObject());
    });
  });

});
Run Code Online (Sandbox Code Playgroud)