在mongoose中使用动态字段

时间:2012-10-03 20:20:31

标签: node.js mongodb express mongoose ejs

我有一个Item架构和集合以及一个List Schema和集合。

我目前创建项目与创建列表分开...但每个项目引用列表objectId。

var ListSchema = new Schema({
    name    : { type: String, required: true, trim: true }
  , user  : { type: Schema.ObjectId, ref: 'User', index: true }
  , description : { type: String, trim: true }
});


var ItemSchema = new Schema({ 
    name    : { type: String, required: true, trim: true }
  , description: { type: String, trim: true }
  , list  : { type: Schema.ObjectId, ref: 'List', index: true }
});

我想知道是否可以获取列表并在该实例的顶部加载该列表的项目:

所以我能做到:

list.items获取视图中的所有项目。

//routes/list.js
List.find({ user: req.params.userid }, function(err, lists){
   //i want to populate list.items here
   res.render('/lists', { lists: lists });
});

//views/list.ejs
<% lists.forEach(function(list){ %>
    List has <%= list.items.length %> items in it
<% }) %>

1 个答案:

答案 0 :(得分:1)

在我看来,您希望对list字段等于列表ID的所有项目运行查询。这是对的吗?

在这种情况下,像

lists.forEach(function(list){
   list.items = []
   Item.find( { list:list._id }, function(err, items) {
       items.forEach(function(item) {
           list.items.add(item);
       });
   });
});

可能就是你想要的。

修改

啊,我明白了。如何创建列表中列出的所有列表中的_id,然后对Item集合进行$ in查询以获取list属性是您找到的列表之一的所有项目?这只是一次调用MongoDB来获取所有项目,你可以将res.render调用放在其回调中。

注意:回调中必须有一些额外的逻辑来解析返回的项目并按列表对它们进行排序。

以下是$ in的docs