我有一个架构,其中有一个子文档由另一个架构定义,如下所示:
export const Child = new Mongo.Collection('Child');
Child.schema = new SimpleSchema({ ... });
Child.attachSchema(Child.schema);
export const Parent = new Mongo.Collection('Parent');
Parent.schema = new SimpleSchema({
child: { type: Child },
...
});
Parent.attachSchema(Parent.schema);
现在,当我读取Parent
类型对象时,我在其child
属性中获得了子对象的id。
有没有办法填充父级的child
属性,这样我就可以将整个Child
对象作为子文档,而不只是一个字符串id(很像mongoose中的populating子文档)?