0
我試圖使用Mongoose連接到MongoDB。但它既不會拋出錯誤也不會連接到數據庫。以下是我的代碼。mongoose.connect在連接到mongodb後不調用回調
const express = require('express');
const app = express();
const port = process.env.PORT || 8080;
const mongoose = require('mongoose');
console.log('Hi, there!!');
mongoose.connect('mongodb://localhost:27017/db_name', (err) => {
console.log('Callback called');
if(err) throw err;
console.log('Connected to database');
})
在上面的代碼沒有的console.log的回調內確實發生了。但mongoose.connect
以外的任何地方做的工作就像的console.log( '嗨,那裏!')
版本使用
express: 4.0.0
mongoose: 3.8.40
node: 7.7.3
mongodb: 3.4.0
此代碼的工作我的機器上完全沒有問題。引發錯誤或連接到數據庫。我想它可能是版本相關的。也許如果你添加什麼版本的節點和貓鼬你正在使用某人可以發現一些東西 –
我已經添加了該帖子的版本 –