ví dụ:
var mongoose = require('mongoose')
, Album = mongoose.model('Album');
app.get('/posts/:id', function(req, res, next) {
Album.findById(req.params.id, function(err, album) {
// album is available here
});
});
xem http://mongoosejs.com/docs/finding-documents.html để tìm hiểu thêm về cách tìm tài liệu.
Tái bút:đây là lần thứ ba tôi trả lời câu hỏi của bạn :)