我有以下 mongodb 结构
{
"_id": ObjectId("507c80a143188f9610000003"),
"date": ISODate("2012-10-15T21: 31: 13.0Z"),
"uid": NumberInt(35920),
"comp": NumberInt(770),
"fields": {
"rating": {
"parent": "rating",
"weight": NumberInt(2),
"rel_weight": 0.11,
},
"capacity": {
"parent": "capacity",
"weight": NumberInt(4),
"rel_weight": 0.89,
},
}
}
“字段”属性中有 2 个字段“评级”和“容量”。但是,每个条目可能有一组不同的字段。例如。尺寸、价格等
我想在“字段”下找到所有具有“评级”的条目,并获得所有此类条目的“权重”属性的总和。
我是 mongodb 的新手,我尝试使用 mapReduce 函数,但无济于事。
下面给出的是我使用的代码。请让我知道我哪里出错了,或者是否有更好的解决方案而不是这段代码。
function map(){
emit(this._id,{weight:this.fields.rating.weight});
}
function reduce(key,value){
var sum = 0;
for ( var i=0; i<value.length; i++ ) {
sum += value[i].amount;
}
return sum;
}
res = db.collection_name.mapReduce(map, reduce, { query: {"fields.rating" : { $exists: true } });