我正在使用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;
我在文档中找不到它说connection
有connections
array
的地方。哪里提到的?connection[]
的类型是connection
吗?这并不是说-https://mongoosejs.com/docs/api/mongoose.htmlapi
和definitions
应该如何定义?
1条答案
按热度按时间rm5edbpk1#
connections
数组记录如下:https://mongoosejs.com/docs/api/mongoose.html#Mongoose.prototype.connections但很明显,您真正想要的是
getClient()
:https://mongoosejs.com/docs/api/connection.html#Connection.prototype.getClient()