Dalam versi Mongoose saat ini, exec()
metode mengembalikan Janji, sehingga Anda dapat melakukan hal berikut:
exports.process = function(r) {
return Content.find({route: r}).exec();
}
Kemudian, ketika Anda ingin mendapatkan data, Anda harus membuatnya async:
app.use(function(req, res, next) {
res.local('myStuff', myLib.process(req.path));
res.local('myStuff')
.then(function(doc) { // <- this is the Promise interface.
console.log(doc);
next();
}, function(err) {
// handle error here.
});
});
Untuk informasi lebih lanjut tentang janji, ada artikel bagus yang baru-baru ini saya baca:http://spion.github.io/posts/why-i-am-switching-to-promises.html