Mongoose Connection

后端 未结 5 750
长情又很酷
长情又很酷 2020-12-09 09:31

I read the quick start from the Mongoose website and I almost copy the code, but I cannot connect the MongoDB using Node.js.

var mongoose = require(\'mongoos         


        
5条回答
  •  清歌不尽
    2020-12-09 10:12

    A simple way i make a connection:

    const mongoose = require('mongoose')

    mongoose.connect();
    mongoose.Promise = global.Promise;
    mongoose.connection.on("error", error => {
        console.log('Problem connection to the database'+error);
    });
    

提交回复
热议问题