Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个猫鼬连接,在我的程序中的某个时刻我需要关闭它。多次记录猫鼬对象后,我发现以下工作
mongoose.connection.base.connections[1].close();
有更清洁的方法吗?
关闭 Mongoose 连接池中的所有连接:
mongoose.disconnect();
文档在这里。