sql >> Databasteknik >  >> NoSQL >> MongoDB

Slinga med asynkrona callbacks i mongoose/mongodb/node

Jag tror att du skulle vilja använda något som async att samordna dessa förfrågningar; map() verkar vara ett bra val:

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. Mongo-go-drivrutinsfel Nytt klientfel ClientOptions i argument till mongo.NewClient

  2. Är det möjligt att skapa en ny databas i MongoDB med Mongoose?

  3. Är Redis bara en cache?

  4. Hur man uppdaterar ett arrayvärde i Mongoose