sql >> Database >  >> NoSQL >> MongoDB

Loop met asynchrone callbacks in mangoest/mongodb/node

Ik denk dat je iets als async wilt gebruiken om die verzoeken te coördineren; map() lijkt een goede keuze:

Author.find({}, function (err, authors) {
  async.map(authors, function(author, done) {
    Book.count({author: author._id}, function(err, count) {
      if (err)
        done(err);
      else
      {
        done(null, {
          id    : author._id,
          name  : author.name,
          count : count
        });
      }           
    });
  }, function(err, author_array) {
    if (err)
    {
      // handle error
    }
    else
    { 
      /*
      res.writeHead(200, { 'Content-Type': 'application/json' });
      res.write(JSON.stringify({ authors: author_array }));
      res.end();
      */
      // Shorter:
      res.json(author_array);
    }
  });
});



  1. Een reeds uitgevoerde taak annuleren in Python RQ?

  2. MongoDb 2.6.1 Fout:17444 - Verouderd punt is buiten bereik voor sferische zoekopdrachten

  3. MongoDB:forEach vs fetch + each

  4. Hoe u terugbellen in mangoest instelt, in een globale variabele