Mongodb/Monk 'count' 未定义

Mongodb/Monk 'count' is undefined

下面是我正在尝试做的简化示例,只是为了让 .count() 正常工作。当我 运行 this 时,我得到与 count() 函数相关的 'TypeError: undefined is not a function'。

查看文档和其他 SO 问题我真的认为这会起作用,我做错了什么

我在小型 node.js 应用程序中使用 Mongo ~2.0 和 Monk ~1.0.1。

    var db = req.db;
    var col = db.get('misconceptions');

    col.find({questionId: "1", isCorrect: "true"}, {}).count(function (e, count) {
    console.log(count);

});

monk 本身不会像这样链接运算符。而是将此表格用于 .count():

col.count({questionId: "1", isCorrect: "true"},function(e,count) {
    console.log(count);
});