0
var ChildSchema = new Schema({
createdAt : Date,
name : String
});
var ParentSchema = new Schema({
children : [ChildSchema]
});
通過上述模式,我希望有一些方法parent.children
,如parent.children.getLatest()
將返回被添加到基於createdAt
如何在mongoose.js子文檔數組中定義實例方法?
parent.children
最新child
我想我只能定義每個child
實例方法通過ChildSchema.methods.getName = function ...