NodeJS - 如何将变量发送到嵌套回调? (MongoDB查找查询)

时间:2013-03-20 15:24:33

标签: javascript node.js function mongodb callback

我想在另一个结果集中使用查询查询的结果集。我无法用英语很好地解释这种情况。我会尝试使用一些代码。

People.find( { name: 'John'}, function( error, allJohns ){
    for( var i in allJohns ){
        var currentJohn = allJohns[i];
        Animals.find( { name: allJohns[i].petName }, allJohnsPets ){
            var t = 1;
            for( var j in allJohnsPets ){
                console.log( "PET NUMBER ", t, " = " currentJohn.name, currentJohn.surname, allJohnsPets[j].name );
                t++;
            }
        }
    }
});

首先,我让所有名为查找的人名为John。然后我将这些人视为 allJohns

其次,我在不同的查找查询中逐一收集每个约翰的所有宠物。

在第二次回调中,我再一次得到每只宠物。但是当我想要显示约翰是他们的主人时,我总是得到同样的约翰。

所以,问题是:如何将每个John分别发送给第二个嵌套回调,他们将作为真正的所有者和宠物聚集在一起。

我需要复制每个约翰,但我不知道我该怎么做。

2 个答案:

答案 0 :(得分:5)

Javascript没有块范围,只有函数范围。使用for .. in ..而不是forEach将为每个循环创建一个新范围:

People.find( { name: 'John'}, function( error, allJohns ){
  allJohns.forEach(function(currentJohn) { 
    Animals.find( { name: currentJohn.petName }, function(err, allJohnsPets) { 
      allJohnsPets.forEach(function(pet, t) { 
        console.log( "PET NUMBER ", t + 1, " = ", currentJohn.name, currentJohn.surname, pet.name );
      });
    });
  });
});

答案 1 :(得分:2)

你必须更加专注于异步性质。

People.find( { name: 'John'}, function( error, allJohns ){
    for( var i=0; i<allJohns.length; i++ ){
     (function(currJohn){
         var currentJohn = currJohn;
         Animals.find( { name: currentJohn.petName }, function(error, allJohnsPets){

             for(var j=0; j<allJohnsPets.length; j++){
       console.log( "PET NUMBER ", (j+1), " = " currentJohn.name, currentJohn.surname, allJohnsPets[j].name );
             }
          })

      })(allJohns[i]);
    }
});