sql >> Database >  >> NoSQL >> MongoDB

mangoest vind alles niet terugbellen

Omdat getAllProductListings asynchroon is, moet u het antwoord in de callback verzenden:

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

En in uw product.js :

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



  1. verzekerenIndex in mongodb

  2. Installeer phpredis MAC OSX

  3. Hoe een verzameling naar CSV in MongoDB exporteren?

  4. AOF- en RDB-back-ups in redis