我试图使用node.js连接mongodb。我偶然发现了一个问题。 我得到要求(...)。纯不是函数错误。我尝试使用此网站上的确切代码" https://mongodb.github.io/node-mongodb-native/api-generated/collection.html" 我的代码如下。
var Db = require('mongodb').Db,
MongoClient = require('mongodb').MongoClient,
Server = require('mongodb').Server,
ReplSetServers = require('mongodb').ReplSetServers,
ObjectID = require('mongodb').ObjectID,
Binary = require('mongodb').Binary,
GridStore = require('mongodb').GridStore,
Grid = require('mongodb').Grid,
Code = require('mongodb').Code,
BSON = require('mongodb').pure().BSON,
assert = require('assert');
var uri = "mongodb://sa:psvitagamer5@cluster0-shard-00-00-
tpfog.mongodb.net:27017,cluster0-shard-00-01-
tpfog.mongodb.net:27017,cluster0-shard-00-02-
tpfog.mongodb.net:27017/myNodeDb?ssl=true&replicaSet=Cluster0-shard-
0&authSource=admin";
MongoClient.connect(uri, function(err, db) {
var collection = db.collection("userCollection");
collection.insert({hello:'world_no_safe'});
// Wait for a second before finishing up, to ensure we have written
the item to disk
setTimeout(function() {
// Fetch the document
collection.findOne({hello:'world_no_safe'}, function(err, item) {
assert.equal(null, err);
assert.equal('world_no_safe', item.hello);
db.close();
})
}, 100);
//db.close();
});
请告诉我你的建议。
答案 0 :(得分:3)
pure()
位于mongodb-core
模块您应该安装mongodb-core
并使用:
BSON = require('mongodb-core').BSON;
BSON
,你应该删除它。