我不知道为什么在我做猫鼬连接时买不到任何事情......
这是我的代码:
const app = express();
const port = 8080;
const bodyParser = require('body-parser');
var mongoose = require('mongoose');
app.use(bodyParser.urlencoded({
extended: false
}))
// parse application/json
app.use(bodyParser.json())
require('./routes/routes.js')(app); //load routes
app.listen(port, function () {
console.log('Example app listening on port ' + port);
});
mongoose.connect('mongodb://localhost/Prueba', function(err) {
if (err){
console.log("DB NOT CONNECTED ERROR: " + err);
}else{
console.log("DB NOT CONNECTED");
}
});
所以我有另一个具有相同连接协议的示例项目,在该项目中一切正常,但在我的项目中没有任何反应......
谢谢
(求助)解决了从"mongoose": "^3.8.40"
到"mongoose": "^4.13.4"
的升级问题。感谢@GrégoryNEUT。