我必须将mapReduce
用于项目,然后我开始关注documentation。
我在页面的test project示例后面创建了first。
我在Mongo中创建了一个名为test
的数据库,我从集合col_one
中的示例中插入了对象:
{
_id: ObjectId("50a8240b927d5d8b5891743c"),
cust_id: "abc123",
ord_date: new Date("Oct 04, 2012"),
status: 'A',
price: 250,
items: [ { sku: "mmm", qty: 5, price: 2.5 },
{ sku: "nnn", qty: 5, price: 2.5 } ]
}
我的代码很简单(如示例所示):
// MongoDB part
// Create server
var mapFunction1 = function() {
emit(this.cust_id, this.price);
};
var reduceFunction1 = function(keyCustId, valuesPrices) {
return Array.sum(valuesPrices);
};
collection.mapReduce(
mapFunction1,
reduceFunction1,
{ out: "col_two" }
);
// Print items from col_two
这会抛出此错误:
.../node_modules/mongodb/lib/mongodb/connection/server.js:524
throw err;
^ TypeError: undefined is not a function
如果我改为此,则此错误消失。
collection.mapReduce(
mapFunction1,
reduceFunction1,
{ out: "col_two" },
function() {
// Print items from col_two
}
);
为什么错误会消失?
答案 0 :(得分:3)
您所遇到的是shell中使用的API与本机node.js驱动程序之间的主要区别之一:shell是同步的,而node.js驱动程序是异步的。
由于node.js驱动程序是异步的,因此您必须按documentation中所示为mapReduce
调用提供回调参数,以便您可以收到结果。