Cách dễ nhất là sử dụng các lời hứa của bluebird, cụ thể là each
, props
, reduce
và map
tùy thuộc vào trường hợp sử dụng của bạn.
Trong trường hợp của bạn, tôi muốn đề xuất một cái gì đó dọc theo dòng
var bluebird = require('bluebird');
var mongoose = require('mongoose');
var UserModel = mongoose.model('User');
function getUser(userId) {
return UserModel.findOne({_id: userId}).lean().exec()
.then(function(user){
return bluebird.props({
firstName: user.firstName,
parents: bluebird.map(user.parents, getUser),
children: bluebird.map(user.children, getUser),
partner: bluebird.map(user.partner, getUser),
sibling: bluebird.map(user.sibling, getUser)
})
});
}
// Then call getUser once on the root node, e.g.
getUser(rootUserObjectId)
.then(function(userTree){
console.log(userTree)
})
Hãy cho tôi biết mọi chuyện diễn ra như thế nào!