所以我有以下代码。我需要它在MongoDB shell中运行。它在数据库中查询其属性标记为true的人员。现在我遇到了麻烦,因为我不知道如何将查询的numcollect部分更改为数组。我试图平均numcollect集合中的所有数字。我知道这段代码不正确,但它显示了我正在尝试做的事情。我需要改变什么?
数据库:
{
"name":"John Doe",
"attribute":"true",
"numcollect":{
"one":12,
"two":22,
"three":44,
"four":79
}
},
{
"name":"Jane Doe",
"attribute":"true",
"numcollect":{
"one":13,
"two":55,
"three":18
}
}
代码
var people= [];
var index = 0;
db.test.find({"attribute":"true"}).forEach(
function(myDoc) {
var person=new Object();
person.name=myDoc.name;
person.numcollect=myDoc.numcollect;
person.numavg = 0;
var i = 0;
for(i = 0; i<numcollect.length; i++)
{
person.numavg+=person.numcollect[i];
}
person.numavg/=i;
people[index]=person;
index++;
}
);
答案 0 :(得分:1)
首先,这个问题与MongoDB无关(因为它使用或多或少的标准JavaScript实现)。您只想知道如何在JavaScript中循环字典/对象中的值:
for (var i in numcollect) {
if (numcollect.hasOwnProperty(i)) {
person.numavg += numcollect[i];
}
}
答案 1 :(得分:0)
这可以是一个答案:
collection.mapReduce(function(){
for(var key in this.numcollect)
emit(this._id, this.numcollect[key])
}, function(key, values){
return Array.sum(values)
},{
out:{inline:1}
}, function(err, doc){
if(err){
console.log("mapReduce ERROR", err);
}else{
console.log("mapReduce Result", doc);
}
})