MongoDB - Error: invalid schema, expected mongodb

前端 未结 9 2133
悲&欢浪女
悲&欢浪女 2020-12-13 05:59

I\'m new in building application with MEAN Stack, I\'m trying to build a real time chat app, here is my server side :

console.log(\"Server running...!\");

v         


        
9条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-13 06:52

    Change content of this line from

    mongo.connect('localhost:27017/db/chat',function(err,db)
    

    to

    mongo.connect('mongodb://localhost:27017/db/chat',function(err,db)
    

    Then you can connect MongoDB database successfully.

提交回复
热议问题