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

mongoose find alle sender ikke tilbagekald

Fordi getAllProductListings er asynkron, skal du sende svaret i tilbagekaldet :

// Get latest listings
router.get('/latest/all', function (req, res, next) {
Product.getAllProductListings(res);
});

Og i din product.js :

//Find All
module.exports.getAllProductListings = function (response) {
var query = {};
Product.find(query, function (err, docs) {
    console.log(docs);
    response.send(docs);
});



  1. Holder arrays gemt i MongoDB deres rækkefølge?

  2. Redis Pub/Sub ServiceStack, annullerer tråden

  3. Forstå WriteConcern i MongoDB C#

  4. MongoDB BSON-codec bruges ikke under kodning af objekt