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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。