所以我有以下代码。我需要它在 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++;
}
);