gpt4 book ai didi

node.js - 当前 URL 字符串解析器在 mongo db 和 nodejs 中已弃用

转载 作者:行者123 更新时间:2023-12-03 12:16:06 25 4
gpt4 key购买 nike

我正在使用 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");
});

最佳答案

将您的代码更改为:

mongoose.connect(db, {useNewUrlParser: true}, (err) => {
if (err)
console.error(err);
else
console.log("Connected to the mongodb");
});

您收到此错误是因为您使用的是较新版本 (>=4.0.0) 的 MongoClient

关于node.js - 当前 URL 字符串解析器在 mongo db 和 nodejs 中已弃用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52375318/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com