0

ネストされた参照モデルを設定するにはどうすればよいですか?

例えば:

// 'Collection' model
var CollectionSchema = new Schema({
  collection_name: String,
  _groups: [{ type: Schema.Types.ObjectId, ref: 'Group' }],
});

// 'Group' model
var GroupSchema = new Schema({
  group_name: String,
  _item: { type: Schema.Types.ObjectId, ref: 'Item' }  // To be populated
  _meta: [ { type: Schema.Types.ObjectId, ref: 'Meta' } // To be populated
});

// 'Item' model
var ItemSchema = new Schema({
  item_name: String,
  item_description: String
});

// 'Meta' model
var MetaSchema = new Schema({
  meta_name: String,
  meta_value: String
});

「コレクション」モデルの「_group」内の各「_item」に入力したいと思います。つまり、次のようなものを取得します。

{
 collection_name: "I'm a collection"
 _groups: [ 
           { _id: ObjectId("520eabd1da5ff8283c000009"),
              group_name: 'Group1',
              _item: { _id: ObjectId("520eabd1da5ff8283c000004"),
                        item_name: "Item1 name",
                        item_description: "Item1 description"
                    },
             _meta: {
                       _id: ObjectId("520eabd1da5ff8283c000001"),
                      meta_name= "Metadata name",
                      meta_value = "metadata value"
                    }
            },
            { _id: ObjectId("520eabd1da5ff8283c000003"),
              group_name: 'Group2',
              _item: { _id: ObjectId("520eabd1da5ff8283c000002"),
                        item_name: "Item2 name",
                        item_description: "Item2 description"
                    },
             _meta: {
                       _id: ObjectId("520eabd1da5ff8283c000001"),
                      meta_name= "Metadata name",
                      meta_value = "metadata value"
                    }
            }
          ]
}
4

2 に答える 2

5

むしろやりたい

var Group = mongoose.model('Group', GroupSchema);

Group.find().populate('_item _meta').exec(function (error, groups) {
  // ...
});
于 2014-01-15T15:57:46.543 に答える
2
var Group = mongoose.model('Group', GroupSchema);
Group.find().populate('_item').populate('_meta').exec(function (error, groups) {
  //groups will be an array of group instances and
  // _item and _meta will be populated
});
于 2013-08-28T15:05:07.720 に答える