关于mongoose文档的澄清- connect返回连接数组

g6baxovj  于 2023-10-19  发布在  Go
关注(0)|答案(1)|浏览(132)

我正在使用mongoose,并引用API https://mongoosejs.com/docs/api/mongoose.html
我的package.json"mongoose": "^7.4.0",所以我不确定我在哪个特定版本上。假设它是7.5.0,我使用connect调用通过mongoose连接到mongodb

const connection = await mongoose.connect(process.env.DATABASE_URL);
          var localdbClient = connection.connections[0].client;

我在文档中找不到它说connectionconnectionsarray的地方。哪里提到的?connection[]的类型是connection吗?这并不是说-https://mongoosejs.com/docs/api/mongoose.html
apidefinitions应该如何定义?

rm5edbpk

rm5edbpk1#

connections数组记录如下:https://mongoosejs.com/docs/api/mongoose.html#Mongoose.prototype.connections
但很明显,您真正想要的是getClient():https://mongoosejs.com/docs/api/connection.html#Connection.prototype.getClient()

相关问题