在MongoDB中映射Reduce:undefined不是一个函数

时间:2013-02-06 17:44:50

标签: javascript node.js mongodb

我必须将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
   }
);

为什么错误会消失?

1 个答案:

答案 0 :(得分:3)

您所遇到的是shell中使用的API与本机node.js驱动程序之间的主要区别之一:shell是同步的,而node.js驱动程序是异步的。

由于node.js驱动程序是异步的,因此您必须按documentation中所示为mapReduce调用提供回调参数,以便您可以收到结果。