节点中的mongodb导出出错,js

时间:2017-04-03 09:45:52

标签: javascript node.js mongodb

我试图使用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();
});

请告诉我你的建议。

1 个答案:

答案 0 :(得分:3)

  1. 该文档编写得不好,也未经过测试,pure()位于mongodb-core模块
  2. 您应该安装mongodb-core并使用:

    BSON = require('mongodb-core').BSON;
    
    1. 我可以看到你(以及该文档)根本没有使用BSON,你应该删除它。