web-dev-qa-db-ja.com

サブドキュメントを作成した後、マングースにサブドキュメントを取り込む方法は?

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

Res.jsonの出力でcomment.created_byフィールドに値を入力する必要があります。

                comment: item.comments.id(comment._id)

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]
});
55
chovy

参照されるサブドキュメントを作成するには、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);
});

最後に、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)
        });
    });
});
71
jsalonen

これは元の答えが書かれてから変更された可能性がありますが、Models Populate関数を使用して、追加のfindOneを実行することなくこれを実行できるようになりました。 http://mongoosejs.com/docs/api.html#model_Model.populate を参照してください。 findOneと同じように、保存ハンドラ内でこれを使用する必要があります。

42
user1417684

@ 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());
    });
  });

});
6
chhtm

私は同じ問題に直面しましたが、何時間も努力した後、解決策を見つけました。外部プラグインを使用せずに解決できます:)

applicantListToExport: function (query, callback) {
  this
   .find(query).select({'advtId': 0})
   .populate({
      path: 'influId',
      model: 'influencer',
      select: { '_id': 1,'user':1},
      populate: {
        path: 'userid',
        model: 'User'
      }
   })
 .populate('campaignId',{'campaignTitle':1})
 .exec(callback);
}
2
Naveen Kumar