我是Mongo和Node的新手。我在mongolabs上设置了一个测试帐户并创建了一个新的管理员用户。然后在我的localhost中我需要mongoose并使用。
mongoose.connect('mongodb://admin:password@ds045475.mongolab.com:45475/nodelearn', function(err){
if (err) console.log(err);
});
然而,它不断抛出错误:[MongoError,connect ECONNREFUSED] name:'MongoError',message:'connect ECONN REFUSED'。我有mongolab地址,我有mongoose导入。我不确定问题是什么。