gpt4 book ai didi

node.js - 类型错误 : Cannot read property 'connect' of undefined

转载 作者:IT老高 更新时间:2023-10-28 12:29:35 25 4
gpt4 key购买 nike

'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

关于node.js - 类型错误 : Cannot read property 'connect' of undefined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37907344/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com