0

从嵌套查询返回数据的方法是什么。

我将多个函数调用合并到一个模块中,我有以下代码

  retrieveStudentSessions: function(req, res, callback){
     MongoClient.connect(config.mongoPath+config.dbName, function(err, db) {
       if(err){
         return callback(new Error("Unable to Connect to DB"));
       }
      var collection        = db.collection(config.userList);
      var sessionCollection = db.collection(config.session);
      var templateCollection = db.collection(config.template);
      var tempSession  = {session:[], templates:[]};

      //Obtain UserID
      collection.find({'email' : req.user['_json'].email}).nextObject(function(err, doc) {
          if(err){
                return callback(new Error("Error finding user in DB"));
          } 
          //Search Session collection for userID
            sessionCollection.find({ $or : [{'studentsB' : doc['userid']},{'studentsA' : doc['userid']}]}).each(function(err, doc) {
              if(err){
                  return callback(new Error("Error finding user in DB"));
              }  
                  //Update JSON
                  tempSession.session.push(doc);
                  //Query for Template Title using Template ID from Session Collection
                  templateCollection.find({'_id' : doc['templateId']}).nextObject(function(err, doc){
                    if(err){
                          return callback(new Error("Error finding user in DB"));
                    } 
                    //Update JSON
                    tempSession.templates.push(doc);
                  });
            });
        return callback(null, tempSession);
      });
    });
  }

调用函数

dbCall.retrieveStudentSessions(req, res, function(err, result){
                if(err){
                    console.log(err);
                    return;
                }
                console.log(result);
            });

undefined is not a function当我尝试返回变量时,上面的代码返回错误tempSession。同样适用于单个查询。当涉及到嵌套查询时,是否有任何特定的返回方法?

4

0 回答 0