- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
尝试在我的 Node 程序中使用 mongodb 的聚合方法时出现类型错误。我使用的是 node 0.10.16 版本和 mongodb mongodb-win32-x86_64-2.4.2 版本。
这是我在 mongodb 中的“关系”表的详细信息 -`
db.relation.find().forEach(printjson)
{ "_id" : ObjectId("518808811189128048034c7b") }
{
"username" : "51880fa37901642c36000001",
"selectedoption" : "RCB",
"question" : "Which team is going to win IPL6?",
"_id" : ObjectId("5188137dee3a599c34000001")
}
{
"username" : "51880fa37901642c36000001",
"selectedoption" : "Mumbai",
"question" : "Which team is going to win IPL6?",
"_id" : ObjectId("518c2bd0afa8d2e82b000001")
}
{
"username" : "51880fa37901642c36000001",
"selectedoption" : "Mumbai",
"question" : "Which team is going to win IPL6?",
"_id" : ObjectId("518c2c81681aae0838000001")
}
{
"username" : "51880fa37901642c36000001",
"selectedoption" : "RCB",
"question" : "Which team is going to win IPL6?",
"_id" : ObjectId("518c2c90681aae0838000002")
}
{
"username" : "51880fa37901642c36000001",
"selectedoption" : "CSK",
"question" : "Which team is going to win IPL6?",
"_id" : ObjectId("518c2cefc7dc797c08000001")
}
{
"username" : "51880fa37901642c36000001",
"selectedoption" : "Mumbai",
"question" : "Which team is going to win IPL6?",
"_id" : ObjectId("518c2d48a2afbdc426000001")
}
{
"username" : "51880fa37901642c36000001",
"selectedoption" : "RCB",
"question" : "Which team is going to win IPL6?",
"_id" : ObjectId("518c2e2fa2afbdc426000002")
}
{
"username" : "521fda91a6abb63037000001",
"selectedoption" : "RCB",
"question" : "Which team is going to win IPL6?",
"_id" : ObjectId("521fda9ea6abb63037000002")
}
{
"username" : "521fda91a6abb63037000001",
"selectedoption" : "CSK",
"question" : "who will IPL this year?",
"_id" : ObjectId("521fdb3ba6abb63037000003")
}
{
"username" : "521fda91a6abb63037000001",
"selectedoption" : "Mumbai",
"question" : "Which team is going to win IPL6?",
"_id" : ObjectId("521fde8da6abb63037000004")
}
{
"username" : "521fda91a6abb63037000001",
"selectedoption" : "CSK",
"question" : "who will IPL this year?",
"_id" : ObjectId("521fdef0a6abb63037000005")
}
{
"username" : "521fda91a6abb63037000001",
"selectedoption" : "Mumbai",
"question" : "Which team is going to win IPL6?",
"_id" : ObjectId("521fdf1aa6abb63037000006")
}
{
"username" : "521fda91a6abb63037000001",
"selectedoption" : "RCB",
"question" : "Which team is going to win IPL6?",
"_id" : ObjectId("521fdffe257b59cc3f000001")
}
{
"username" : "521fda91a6abb63037000001",
"selectedoption" : "Mumbai",
"question" : "Which team is going to win IPL6?",
"_id" : ObjectId("521fe09c827ff1e418000001")
}
{
"username" : "521fda91a6abb63037000001",
"selectedoption" : "CSK",
"question" : "Which team is going to win IPL6?",
"_id" : ObjectId("521fe0cb5022f0c03c000001")
}
{
"username" : "521fda91a6abb63037000001",
"selectedoption" : "Mumbai",
"question" : "Which team is going to win IPL6?",
"_id" : ObjectId("521fe1558b82555c25000001")
}
{
"username" : "521fda91a6abb63037000001",
"selectedoption" : "CSK",
"question" : "Which team is going to win IPL6?",
"_id" : ObjectId("521fe17d8b82555c25000002")
}
{
"username" : "521fda91a6abb63037000001",
"selectedoption" : "CSK",
"question" : "Which team is going to win IPL6?",
"_id" : ObjectId("521fe2e8c134b7bc40000001")
}
{
"username" : "521fda91a6abb63037000001",
"selectedoption" : "CSK",
"question" : "who will IPL this year?",
"_id" : ObjectId("521fe354b59421cc07000001")
}
{
"username" : "521fda91a6abb63037000001",
"selectedoption" : "RCB",
"question" : "Which team is going to win IPL6?",
"_id" : ObjectId("521fe392b59421cc07000002")
}
这是上表中的所有粗略数据(mongodb 中的集合)。我需要在上表中基于“selectedoption”列的 sql 术语中的“分组依据”,只需要对其进行计数。因此,结果将是对“RCB”、“CSK”、“孟买”数据的计数。这是我的示例 Node 片段,删除了不需要的行,我使用的是快速服务器 -
var express = require('express'),
routes = require('./routes'),
user = require('./routes/user'),
http = require('http'),
path = require('path');
var app = express();
var mongo = require('mongodb');
var db = new mongo.Db('voteapp', new mongo.Server("127.0.0.1", 27017, {
auto_reconnect: true
}, {
safe: false,
strict: false
}))
app.get('/test', function(req, res) {
res.send('works');
db.collection('relation', function(err, collection){
console.log('in');
collection.aggregate({$group : {_id: "$selectedoption", selectedoption: {$sum: 1}}});
console.log('out');
});
});
上面一行-
collection.aggregate({$group : {_id: "$selectedoption", selectedoption: {$sum: 1}}})
在 Node 控制台中给我以下错误
TypeError: Cannot read property 'readPreference' of undefined at Collection.aggregate (D:\mongo-js - 1\node_modules\mongodb\lib\mongodb\collection.js:1632:17)
at D:\mongo-js - 1\app.js:107:16
at Db.collection (D:\mongo-js - 1\node_modules\mongodb\lib\mongodb\db.js:461:44)
at D:\mongo-js - 1\app.js:105:6
at callbacks (D:\mongo-js - 1\node_modules\express\lib\router\index.js:161:37)
at param (D:\mongo-js - 1\node_modules\express\lib\router\index.js:135:11)
at pass (D:\mongo-js - 1\node_modules\express\lib\router\index.js:142:5)
at Router._dispatch (D:\mongo-js - 1\node_modules\express\lib\router\index.js:170:5)
at Object.router (D:\mongo-js - 1\node_modules\express\lib\router\index.js:33:10)
at next (D:\mongo-js - 1\node_modules\express\node_modules\connect\lib\proto.js:190:15)
-它在 mongodb 控制台中运行良好,并给出以下输出 -
> db.relation.aggregate({$group : {_id: "$selectedoption", selectedoption: {$sum: 1}}});
{
"result" : [
{
"_id" : "CSK",
"selectedoption" : 9
},
{
"_id" : "Mumbai",
"selectedoption" : 10
},
{
"_id" : "RCB",
"selectedoption" : 8
},
{
"_id" : null,
"selectedoption" : 1
}
],
"ok" : 1
}
如果能提供解决此问题的任何指示或指导,我将不胜感激。
最佳答案
你需要像这样实现一个回调函数:
collection.aggregate({$group : {_id: "$selectedoption", selectedoption: {$sum: 1}}},
function(err, result){
//some stuff
});
关于Node.js - 类型错误 : Cannot read property 'readPreference' of undefined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18563562/
我已经使用 vue-cli 两个星期了,直到今天一切正常。我在本地建立这个项目。 https://drive.google.com/open?id=0BwGw1zyyKjW7S3RYWXRaX24tQ
您好,我正在尝试使用 python 库 pytesseract 从图像中提取文本。请找到代码: from PIL import Image from pytesseract import image_
我的错误 /usr/bin/ld: errno: TLS definition in /lib/libc.so.6 section .tbss mismatches non-TLS reference
我已经训练了一个模型,我正在尝试使用 predict函数但它返回以下错误。 Error in contrasts<-(*tmp*, value = contr.funs[1 + isOF[nn]])
根据Microsoft DataConnectors的信息我想通过 this ODBC driver 创建一个从 PowerBi 到 PostgreSQL 的连接器使用直接查询。我重用了 Micros
我已经为 SoundManagement 创建了一个包,其中有一个扩展 MediaPlayer 的类。我希望全局控制这个变量。这是我的代码: package soundmanagement; impo
我在Heroku上部署了一个应用程序。我正在使用免费服务。 我经常收到以下错误消息。 PG::Error: ERROR: out of memory 如果刷新浏览器,就可以了。但是随后,它又随机发生
我正在运行 LAMP 服务器,这个 .htaccess 给我一个 500 错误。其作用是过滤关键字并重定向到相应的域名。 Options +FollowSymLinks RewriteEngine
我有两个驱动器 A 和 B。使用 python 脚本,我在“A”驱动器中创建一些文件,并运行 powerscript,该脚本以 1 秒的间隔将驱动器 A 中的所有文件复制到驱动器 B。 我在 powe
下面的函数一直返回这个错误信息。我认为可能是 double_precision 字段类型导致了这种情况,我尝试使用 CAST,但要么不是这样,要么我没有做对...帮助? 这是错误: ERROR: i
这个问题已经有答案了: Syntax error due to using a reserved word as a table or column name in MySQL (1 个回答) 已关闭
我的数据库有这个小问题。 我创建了一个表“articoli”,其中包含商品的品牌、型号和价格。 每篇文章都由一个 id (ID_ARTICOLO)` 定义,它是一个自动递增字段。 好吧,现在当我尝试插
我是新来的。我目前正在 DeVry 在线学习中级 C++ 编程。我们正在使用 C++ Primer Plus 这本书,到目前为止我一直做得很好。我的老师最近向我们扔了一个曲线球。我目前的任务是这样的:
这个问题在这里已经有了答案: What is an undefined reference/unresolved external symbol error and how do I fix it?
我的网站中有一段代码有问题;此错误仅发生在 Internet Explorer 7 中。 我没有在这里发布我所有的 HTML/CSS 标记,而是发布了网站的一个版本 here . 如您所见,我在列中有
如果尝试在 USB 设备上构建 node.js 应用程序时在我的树莓派上使用 npm 时遇到一些问题。 package.json 看起来像这样: { "name" : "node-todo",
在 Python 中,您有 None单例,在某些情况下表现得很奇怪: >>> a = None >>> type(a) >>> isinstance(a,None) Traceback (most
这是我的 build.gradle (Module:app) 文件: apply plugin: 'com.android.application' android { compileSdkV
我是 android 的新手,我的项目刚才编译和运行正常,但在我尝试实现抽屉导航后,它给了我这个错误 FAILURE: Build failed with an exception. What wen
谁能解释一下?我想我正在做一些非常愚蠢的事情,并且急切地等待着启蒙。 我得到这个输出: phpversion() == 7.2.25-1+0~20191128.32+debian8~1.gbp108
我是一名优秀的程序员,十分优秀!