如何使用NodeJS连接到MongoDB?

时间:2019-03-25 13:10:51

标签: node.js mongodb mongoose

我无法连接到MongoDB。

这是我的代码:

var MongoClient = require('mongodb').MongoClient,format =require('util').format;

MongoClient.connect('mongodb://127.0.0.1:27017', function(err, db){
  if(err){
    throw err;
  }else{
    console.log("daniel is connected");
  }
})

当我命令'npm start'时,我进入了连接的控制台日志,但是当我进入我为数据库设置的URL'http://localhost:3000/api'时,我得到了一个错误页面显示“本地主机拒绝连接。”。

0 个答案:

没有答案