Node.js - 在不查询的情况下获取SchemaObject?

时间:2011-10-18 17:35:09

标签: mongodb node.js coffeescript mongoose

Givem我有Subdomain ID,我是否需要进行查找以获取子域对象?

例如:我必须执行Subdomain.find {_id: item.subdomain_id}, (err, subdomain) ->才能获得对象子域名?做item.subdomain会好得多。

谢谢!

1 个答案:

答案 0 :(得分:0)

如果您只有_id,您仍然需要查找文档本身。在Mongoose中,可以使用Model.findById完成此操作,如下所述:http://mongoosejs.com/docs/finding-documents.html#Model.findById