“Połącz MongoDB za pomocą Mongoose w węźle JS” Kod odpowiedzi

NodeJS połączenia Mongoose

const mongoose = require('mongoose');

const connectDB = async () => {
    mongoose
        .connect('mongodb://localhost:27017/playground', {
            useCreateIndex: true,
            useNewUrlParser: true,
            useUnifiedTopology: true,
            useFindAndModify: false
        })
        .then(() => console.log('Connected Successfully'))
        .catch((err) => console.error('Not Connected'));
}

module.exports = connectDB;
Uptight Unicorn

Łączenie z MongoDB za pomocą Mongoose

//Import the mongoose module
var mongoose = require('mongoose');

//Set up default mongoose connection
var mongoDB = 'mongodb://127.0.0.1/my_database';
mongoose.connect(mongoDB, {useNewUrlParser: true, useUnifiedTopology: true});

//Get the default connection
var db = mongoose.connection;

//Bind connection to error event (to get notification of connection errors)
db.on('error', console.error.bind(console, 'MongoDB connection error:'));
TJ Max

Mongoose łączą się z MongoDB

// local conecation

const mongoose = require("mongoose");

mongoose
  .connect("mongodb://localhost:27017/testdb")
  .then(() => console.log("Connected to MongoDB..."))
  .catch((err) => console.error("Could not connect to MongoDB...", err));
Average Ant

Łączenie Mongoose z Express JS

const mongoose = require('mongoose');
mongoose.connect('mongodb://localhost:27017/test', {useNewUrlParser: true, useUnifiedTopology: true});
Panicky Pollan

Łączenie nodejs za pomocą Mongoose

mongoose.connect('mongodb://username:password@host:port/database?options...');
Xenophobic Xenomorph

Połącz MongoDB za pomocą Mongoose w węźle JS

const mongoose=require('mongoose');
const mongoURI="mongodb://localhost:27017/inotebook"


const connectToMongo=()=>
{
    mongoose.connect(mongoURI,()=>
    {
        console.log("connect Successfully");
    })
}

module.exports=connectToMongo;
30_Savaliya Denish

Odpowiedzi podobne do “Połącz MongoDB za pomocą Mongoose w węźle JS”

Pytania podobne do “Połącz MongoDB za pomocą Mongoose w węźle JS”

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

Przeglądaj inne języki kodu