最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Iterate through mongoose find result - Stack Overflow

programmeradmin4浏览0评论

I have some trouble getting out data from the result of a query in mongoose: here is my function:

getNinjas : function(res){
    var twisted = function(res){
        return function(err, data){
            if (err){
                console.log('error occured');
                return;
            }
            res.send('My ninjas are:\n');
            for (var i;i<data.length;i++){
                console.log(data[i].name);
            }
                            //I need to process my data one by one here
        }
    }

    Ninja.find({},'name skill',twisted(res));
}

So if I console.log(data) in the getNinjas function, I get the result of my query. How can I access each record one by one? I get nothing in the console like this.

I have some trouble getting out data from the result of a query in mongoose: here is my function:

getNinjas : function(res){
    var twisted = function(res){
        return function(err, data){
            if (err){
                console.log('error occured');
                return;
            }
            res.send('My ninjas are:\n');
            for (var i;i<data.length;i++){
                console.log(data[i].name);
            }
                            //I need to process my data one by one here
        }
    }

    Ninja.find({},'name skill',twisted(res));
}

So if I console.log(data) in the getNinjas function, I get the result of my query. How can I access each record one by one? I get nothing in the console like this.

Share edited Sep 3, 2018 at 4:56 Cœur 38.8k26 gold badges205 silver badges277 bronze badges asked Apr 6, 2013 at 16:33 PioPio 4,06211 gold badges47 silver badges81 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 7

You forgot to initialize i:

for (var i = 0;i<data.length;i++){
//        ^^^^
  console.log(data[i].name);
}

Since you ask how to access each record one by one, it's good to have forEach in your arsenal other than the standard for loop. Once you've crossed the error checking if:

data.forEach(function(record){
    console.log(record.name);
    // Do whatever processing you want
});
发布评论

评论列表(0)

  1. 暂无评论