gpt4 book ai didi

node.js - 无法读取 null 的属性 'collection'

转载 作者:可可西里 更新时间:2023-11-01 10:19:14 24 4
gpt4 key购买 nike

这是我的代码

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

// Connect to the db

MongoClient.connect("mongodb://localhost:27017/exampleDb", function(err, db) {
if(!err) {
console.log('we are connected');
}

var k ='testt';
var collection = db.collection(k);
var doc1 = {'hello':'doc1'};
var doc2 = {'hello':'doc2'};
var lotsOfDocs = [{'hello':'doc3'}, {'hello':'doc4'}];

collection.insert(doc1);

collection.insert(doc2, {w:1}, function(err, result) {});

collection.insert(lotsOfDocs, {w:1}, function(err, result) {});

});

它显示此错误“无法读取 null 的属性‘collection’”。

最佳答案

问题是无论数据库连接是否成功,您都直接调用 db.collection。您需要检查数据库连接是否有错误。 db.collection 只有在数据库连接成功时才起作用。查看下面的示例以更好地理解

 MongoClient.connect('mongodb://localhost:27017/test',function(err,db){
if(err)
{
console.log(err);
}
else
{
console.log("Connected to db");

db.collection('testt').insert({"doc1":"hello"},function(err,data){

if(err)
{
throw(err);
}
else
{
console.log("sucessfuly inserted");
}

})

关于node.js - 无法读取 null 的属性 'collection',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41115799/

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