我使用
通过npm安装了mongodbnpm install mongodb
其中安装了1.4.32版本的mongodb驱动程序。 在底部给出的代码工作正常,但当我升级我的驱动程序(并从节点模块删除旧的1.4.32文件夹,更新package.json) 我收到以下错误:
unknown system error : 10042.
我在搜索引擎上查了一下它的windows winsock错误,不知道为什么我用最新版本得到这个而不是早期版本..
我猜它与url中的replicaSet选项有关,我不知道如何设置它,我的意思是我试过
mongodb://localhost/test?replicaSet=rs0-1
但是我们需要配置副本集,我们如何使用null作为副本集..
这是我在nodeJS中使用的连接代码,可以与1.4。*的mongodb本机驱动程序一起使用,但不能与2.0.18的mongodb本机驱动程序一起使用。
var express = require('../Express2/node_modules/express');
var app = express(); // instantiate the express object thru its constructor
var path = require('path');
var assert = require('assert');
var mongodb = require('mongodb'); // 2.0.18
// use /public directory for serving web pages first
app.use(express.static(path.join(__dirname , '/public'))); // add current directory
// when a request for /insert is received
app.get("/insert",function(req,resp){
// Create a mongo client
var mongoClient = mongodb.MongoClient;
// configure url to connect to
var url = 'mongodb://localhost:27017/test';
//mongodb://user:pass@ipaddr:port/dbname
// try to connect and get db handle
mongoClient.connect(url,function(err,db){
if(err){
console.log(err.toString()); // Error thrown here..
}
else{
console.log('successfully connected to mongod server');
var collectionStudent = db.collection('student');
// accepts obj and callback.
collectionStudent.insert(
{name:'Andrew',courses:[{subject:'RDBMS',fee:15000}]},
function(err,result){
resp.send('Result of insertion:' + JSON.stringify(result));
resp.end();
db.close();
}
);
}
});
});
// for pages not found in public directory, do this:
app.get("*",function(req,resp){
resp.sendFile(path.join(__dirname , "/public/404.html"));
});
// any other special routes like /result etc appear below this line
//..
//..
app.listen(3000);