Mongoose Schema API Connection.prototype.close() Mongoose API 的方法用于 Connection 对象,它允许我们从 mongoose 端关闭 mongodb 连接。借助该方法我们可以强制关闭连接。让我们通过一个例子来理解close()方法。
用法:
connection.close( force, callback );
参数:该方法接受两个参数,如下所述:
- force:它用于指定我们是否要强制关闭连接。
- callback:用于指定关闭连接后执行的回调函数。
返回值:如果我们不提供任何回调函数作为该方法的参数,该方法将返回 Promise。
设置 Node.js Mongoose 模块:
步骤 1:使用以下命令创建 Node.js 应用程序:
npm init
步骤 2:创建 NodeJS 应用程序后,使用以下命令安装所需的模块:
npm install mongoose
项目结构: 项目结构将如下所示:
数据库结构:数据库结构如下所示,以下数据库存在于 MongoDB 中。
示例 1:下面的示例说明了 Mongoose Schema 的函数close()方法。我们可以注意到,关闭连接后,我们无法在数据库中创建任何集合。
文件名:app.js
Javascript
// Require mongoose module
const mongoose = require("mongoose");
// Set Up the Database connection
const URI = "mongodb://localhost:27017/geeksforgeeks"
const connectionObject = mongoose.createConnection(URI, {
useNewUrlParser: true,
useUnifiedTopology: true,
})
connectionObject.close(true, (error, result) => {
if (error) {
console.log('error', error);
} else {
console.log('Connection Closed successfully');
}
})
const Customer =
connectionObject.model('Customer', new mongoose.Schema({
name: String,
address: String,
orderNumber: Number,
}));
运行程序的步骤:要运行应用程序,请从项目的根目录执行以下命令:
node app.js
输出:
Connection Closed successfully
示例 2:下面的示例说明了 Mongoose Schema 的函数close()方法。然而,当我们评论close()方法行中,我们可以很容易地注意到现在集合已经在数据库中创建了。
文件名:app.js
Javascript
// Require mongoose module
const mongoose = require("mongoose");
// Set Up the Database connection
const URI = "mongodb://localhost:27017/geeksforgeeks"
const connectionObject = mongoose.createConnection(URI, {
useNewUrlParser: true,
useUnifiedTopology: true,
})
// connectionObject.close(true, (error, result) => {
// if(error) {
// console.log('error', error);
// } else {
// console.log('Connection Closed successfully');
// }
// })
const Customer =
connectionObject.model('Customer', new mongoose.Schema({
name: String,
address: String,
orderNumber: Number,
}));
运行程序的步骤:要运行应用程序,请从项目的根目录执行以下命令:
node app.js
输出:
数据库结构:数据库结构如下所示,以下数据库存在于 MongoDB 中。
参考:https://mongoosejs.com/docs/api/connection.html#connection_Connection-close
相关用法
- Mongoose Schema Connection.prototype.asPromise()用法及代码示例
- Mongoose Schema Connection.prototype.dropCollection()用法及代码示例
- Mongoose Schema Connection.prototype.set()用法及代码示例
- Mongoose Schema Connection.prototype.dropDatabase()用法及代码示例
- Mongoose Schema Connection.prototype.useDb()用法及代码示例
- Mongoose SchemaType.prototype.ref()用法及代码示例
- Mongoose SchemaType.prototype.default()用法及代码示例
- Mongoose SchemaType.prototype.immutable()用法及代码示例
- Mongoose SchemaType.prototype.unique()用法及代码示例
- Mongoose SchemaType.prototype.validate()用法及代码示例
- Mongoose Schema.prototype.virtual()用法及代码示例
- Mongoose SchemaType.prototype.get()用法及代码示例
- Mongoose SchemaType.prototype.text()用法及代码示例
- Mongoose SchemaType.prototype.set()用法及代码示例
- Mongoose SchemaType.prototype.required()用法及代码示例
- Mongoose SchemaType.prototype.select()用法及代码示例
- Mongoose Schema.prototype.plugin()用法及代码示例
- Mongoose SchemaType.prototype.transform()用法及代码示例
- Mongoose SchemaType.prototype.index()用法及代码示例
- Mongoose Schema.prototype.static()用法及代码示例
- Mongoose Schema.prototype.pre()用法及代码示例
- Mongoose countDocuments()用法及代码示例
- Mongoose deleteMany()用法及代码示例
- Mongoose deleteOne()用法及代码示例
- Mongoose estimatedDocumentCount()用法及代码示例
注:本文由纯净天空筛选整理自sakshio0hoj大神的英文原创作品 Mongoose Schema Connection.prototype.close() API。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。