exempel:
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
});
});
se http://mongoosejs.com/docs/finding-documents.html för att lära dig mer om att hitta dokument.
PS:det är tredje gången jag besvarar din fråga :)