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

Sløjfe med asynkrone tilbagekald i mongoose/mongodb/node

Jeg tror, ​​du vil bruge noget som async at koordinere disse anmodninger; map() synes at være et godt valg:

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. Hvordan bruger jeg GraphQL med Mongoose og MongoDB uden at oprette Mongoose-modeller

  2. Design Redis database tabel som SQL?

  3. Sådan forbinder du Mongo DB med Android-applikation

  4. NoClassDefFoundError efter eksport af jar