这是因为您使用的连接字符串格式不正确。
您正在使用
localhost:27017/db/chat它应该是
mongodb://localhost:27017/db/chat
连接字符串的模式是
mongodb://<HOSTNAME>:<PORT>/<DBNAME>
供参考的文章:https : //mongodb.github.io/node-
mongodb-native/api-genic/mongoclient.html#mongoclient-
connect

这是因为您使用的连接字符串格式不正确。
您正在使用
localhost:27017/db/chat它应该是
mongodb://localhost:27017/db/chat
连接字符串的模式是
mongodb://<HOSTNAME>:<PORT>/<DBNAME>
供参考的文章:https : //mongodb.github.io/node-
mongodb-native/api-genic/mongoclient.html#mongoclient-
connect