【发布时间】:2019-02-21 19:48:50
【问题描述】:
我正在使用 mongodb 和 nodejs 8 连接到数据库,但出现此错误:
(node:7280) DeprecationWarning: current URL string parser is deprecated, and will be removed in a future version. To use the new parser, pass option { useNewUrlParser: true } to MongoClient.connect.
我的代码:
mongoose.connect(db,(err) => {
if (err)
console.error(err);
else
console.log("Connected to the mongodb");
});
【问题讨论】:
-
欢迎来到 SO。您似乎忘记在问题中包含您看到的错误。
-
是的,这是真的,错误是:(node:7280) DeprecationWarning: current URL string parser is deprecated, and will be removed in a future version.要使用新的解析器,请将选项 { useNewUrlParser: true } 传递给 MongoClient.connect。
-
感谢您的记忆