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

Mungo findet alle, die keinen Rückruf senden

Denn getAllProductListings asynchron ist, müssen Sie die Antwort im Callback senden :

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

Und in Ihrer product.js :

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