“client.Connect nie jest węzłem funkcyjnym JS MongoDB” Kod odpowiedzi

MongoDB.Connect nie jest funkcją

const { MongoClient } = require("mongodb");

const uri = "yourUri...";
const databaseName = "yourDBName";

MongoClient.connect(uri, { useNewUrlParser: true }, (error, client) => {
  if (error) {
    return console.log("Connection failed for some reason");
  }
  console.log("Connection established - All well");
  const db = client.db(databaseName);
});
Grotesque Goldfinch

client.Connect nie jest węzłem funkcyjnym JS MongoDB

//Just add this line of code and client.connect and 
//-other dot functions will work

var mongo = require('mongodb').MongoClient;
Fierce Flatworm

Odpowiedzi podobne do “client.Connect nie jest węzłem funkcyjnym JS MongoDB”

Pytania podobne do “client.Connect nie jest węzłem funkcyjnym JS MongoDB”

Więcej pokrewnych odpowiedzi na “client.Connect nie jest węzłem funkcyjnym JS MongoDB” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu