使用节点js

时间:2016-06-22 20:49:14

标签: node.js mongodb

我没有从嵌套查询中获得结果,loc始终为null。打印时,查询参数具有正确的值,数据库集合'用户'有来自数组friendsP的id的文档。

var acquireFriendsPositions = function(db, id, res, callback) {
  var cursor = db.collection('users').find({"_id" : new ObjectId(id)}, {_id:0, friends:1});
  cursor.each(function(err, doc) {
      assert.equal(err, null);
      if (doc != null) {
         friendsP = doc.friends;
         console.log(friendsP);   //I get the array friendsP
         for(var i =0; i<friendsP.length; i++)
         {
          console.log(friendsP[i]);   //friendsP[i] has proper value
           var curs = db.collection('users').find({"_id" : new ObjectId(friendsP[i])});   //but query returns null
           curs.each(function(err, loc) {
            //assert.equal(err, null);
            if(loc!= null) {
                console.log(loc);
                friendsPos.push(loc);
              }
              else {
                console.log("else");
              }
           });
         }
        promise(friendsPos, res); //here i wait for friendsPos and use it in res.send(), but friendsPos is empty because loc is always null
      } else {
         callback();  //callback does db.close();
      }
   });
};

3 个答案:

答案 0 :(得分:0)

如果这是您正在使用的确切代码,我怀疑friendsP值会在下一个each周期中被提升并覆盖。这意味着你应该能够通过简单地将代码更改为var friendsP = doc.friends来解决这个问题,以便将friendsP变量放在函数范围内。如果发生这种情况,这是一个令人讨厌的错误,你应该总是使用本地范围声明变量,以防止这种情况发生。

答案 1 :(得分:0)

尝试使用它来构建对象ID:

var mongodb = require('mongodb');

mongodb.ObjectID.createFromHexString(friendsP[i]);

答案 2 :(得分:0)

谢谢你们,伙计们。实际上,问题是callback()在执行查询之前关闭了连接。这是我的新代码:

var acquireFriendsPositions = function(db, id, res, callback) {
  db.collection('users').findOne({"_id" : new ObjectId(id)},
  function(err, item) {
    var friendsP = item.friends;
    var locFriends = [];
    promise(locFriends, res);
    var x = 0;
    for(i =0; i<friendsP.length; i++)
    {
      db.collection('users').findOne({"_id" : friendsP[i]}, function(err,subItem){
        x=x+1;
        //console.log(subItem);
        locFriends.push(subItem);
        if(x==friendsP.length)
          callback();
        });
    }
  });
};