“Client.Connect bukan node fungsi JS MongoDB” Kode Jawaban

MongoDB.Connect bukan fungsi

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 bukan node fungsi JS MongoDB

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

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

Jawaban yang mirip dengan “Client.Connect bukan node fungsi JS MongoDB”

Pertanyaan yang mirip dengan “Client.Connect bukan node fungsi JS MongoDB”

Lebih banyak jawaban terkait untuk “Client.Connect bukan node fungsi JS MongoDB” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya