MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

interrogare con la mangusta

esempio:

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
  });      
});

vedere http://mongoosejs.com/docs/finding-documents.html per ulteriori informazioni sulla ricerca di documenti.

PS:è la terza volta che rispondo alla tua domanda :)