Bạn có thể chỉ định rõ ràng chỉ các tham số bắt buộc của phương thức điền:
WizardModel
.find({})
.populate({path: 'spells', options: { sort: [['damages', 'asc']] }})
Hãy xem tại http://mongoosejs.com/docs/api.html#document_Document-populate Đây là một ví dụ từ liên kết ở trên.
doc
.populate('company')
.populate({
path: 'notes',
match: /airline/,
select: 'text',
model: 'modelName'
options: opts
}, function (err, user) {
assert(doc._id == user._id) // the document itself is passed
})