MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Abfrage mit Mungo

Beispiel:

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

siehe http://mongoosejs.com/docs/finding-documents.html um mehr über die Suche nach Dokumenten zu erfahren.

PS:das ist das dritte Mal, dass ich deine Frage beantworte :)