node.js – TypeError:无法读取未定义的属性“connect”

'use strict';

var MongoClient;
MongoClient = require('mongodb').MongoClient();

MongoClient.connect(
'mongodb://127.0.0.1:27017/accounting',function (err,connection){
    var collection = connection.collection('customers');

    collection.insert({'name': 'John Doe'},function(err,count){

        collection.find().toArray(function(err,documents){
            console.dir(documents);
            connection.close();
        });

    });

});

使用此代码时出现此错误,我想知道导致错误的原因和任何可能的修复.

TypeError: Cannot read property 'connect' of undefined
at Object.<anonymous> (C:\Users\Matt\WebstormProjects\keyword-wrangler\index.js:6:12)
at Module._compile (module.js:409:26)
at Object.Module._extensions..js (module.js:416:10)
at Module.load (module.js:343:32)
at Function.Module._load (module.js:300:12)
at Function.Module.runMain (module.js:441:10)
at startup (node.js:139:18)
at node.js:968:3

不完全确定导致这种情况的是什么,我正在使用WebStorm并安装了最新版本的mongodb.

解决方法

正确的方式

var MongoClient = require('mongodb').MongoClient; // it's not a function

你的方式

var MongoClient = require('mongodb').MongoClient();

Docs

相关文章

这篇文章主要介绍“基于nodejs的ssh2怎么实现自动化部署”的...
本文小编为大家详细介绍“nodejs怎么实现目录不存在自动创建...
这篇“如何把nodejs数据传到前端”文章的知识点大部分人都不...
本文小编为大家详细介绍“nodejs如何实现定时删除文件”,内...
这篇文章主要讲解了“nodejs安装模块卡住不动怎么解决”,文...
今天小编给大家分享一下如何检测nodejs有没有安装成功的相关...