Prisma -提供的数据库字符串无效,MongoDB连接字符串错误

cpjpxq1n  于 2023-03-17  发布在  Go
关注(0)|答案(2)|浏览(225)

我被告知MongoDB数据提供程序的连接字符串无效。
具体来说,我得到了这个:The provided database string is invalid. MongoDB connection string error: Missing delimiting slash between hosts and options in database URL.
但是,我的问题是,我的连接字符串没有分隔斜杠:它是mongodb://<user>:<pass>@cluster0.<server>.mongodb.net/?retryWrites=true&w=majority
怎么了?我错过什么了吗?

yptwkmov

yptwkmov1#

主机后缺少数据库名称:mongodb://<user>:<pass>@cluster0.<server>.mongodb.net/<mydb>?retryWrites=true&w=majority

bzzcjhmw

bzzcjhmw2#

如果你使用的是mongodb,那么只要写数据库名称,如这里所示,请不要忘记删除这些箭头mongodb://:@cluster0..mongodb.net/==〉mongodb〈==?retryWrites=true&w=majority

相关问题