admin管理员组文章数量:1339781
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.
2 Answers
Reset to default 7You 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
});
本文标签: javascriptIterate through mongoose find resultStack Overflow
版权声明:本文标题:javascript - Iterate through mongoose find result - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743596681a2507970.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论