node-mongodb-native を使用した map/reduce メソッドがあります。「product_id」で個別のレコードのみを返そうとしています。これは私がこれまでに持っているものです:
var map = function() {
emit("_id", {"_id" : this._id,
"product_id" : this.product_id,
"name" : this.name
});
}
var reduce = function(key, values) {
var items = [];
var exists;
values.forEach(function(value) {
if(items.length > 0) {
items.forEach(function(item_val, key) {
if(item_val.product_id == value.product_id) {
exists = true;
}
});
if(!exists) {
items.push(value);
}
exists = false;
} else {
items.push(value);
}
});
return {"items" : items};
}
this.collection.mapReduce(map, reduce, {out : {inline: 1}, limit: 4}, function(err, results) {
if (err) {
console.log(err);
} else {
console.log(results[0].value.items);
}
});
私の論理では何かがうまくいかないようです。product_id が同じ重複レコードを追加します。
どんな助けでも素晴らしいでしょう - ありがとう!