Mongoose API 的 Connection.prototype.dropDatabase() 方法用於 Connection 對象。它允許我們從 MongoDB 中刪除特定數據庫。除了數據庫之外,它還將刪除集合、文檔和索引相關數據。讓我們通過一個例子來理解dropDatabase()方法。
用法:
connection.dropDatabase( <callback_function> );
參數:此方法接受單個參數,如下所述:
- callback:它用於指定回調函數,該函數將在dropDatabase()方法結束其執行。
返回值:如果未提供回調函數,則此方法返回一個承諾。
設置 Node.js Mongoose 模塊:
步驟 1:使用以下命令創建 Node.js 應用程序:
npm init
步驟 2:創建 NodeJS 應用程序後,使用以下命令安裝所需的模塊:
npm install mongoose
項目結構: 項目結構將如下所示:
數據庫結構:數據庫結構如下所示,以下數據庫存在於 MongoDB 中。
示例 1:下麵的示例說明了 Mongoose Connection 的基本函數dropDatabase()方法,使用回調函數。
文件名: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.dropDatabase((error, result) => {
if (error) {
console.log(error);
} else {
console.log(result);
}
})
運行程序的步驟:要運行應用程序,請從項目的根目錄執行以下命令:
node app.js
輸出:
true
使用 Robo3T GUI 工具的數據庫的 GUI 表示:
示例 2:下麵的示例說明了 Mongoose Connection 的基本函數dropDatabase()方法,使用異步函數。
數據庫結構:數據庫結構如下所示,以下數據庫存在於 MongoDB 中。
文件名:app.js
Javascript
// Require mongoose module
const mongoose = require("mongoose");
// Set Up the Database connection
const URI = "mongodb://localhost:27017/customers"
const connectionObject = mongoose.createConnection(URI, {
useNewUrlParser: true,
useUnifiedTopology: true,
});
(async () => {
const result = await connectionObject.dropDatabase();
console.log(result);
})();
運行程序的步驟:要運行應用程序,請從項目的根目錄執行以下命令:
node app.js
輸出:
true
使用 Robo3T GUI 工具的數據庫的 GUI 表示:
參考:https://mongoosejs.com/docs/api/connection.html#connection_Connection-dropDatabase
相關用法
- Mongoose Schema Connection.prototype.dropCollection()用法及代碼示例
- Mongoose Schema Connection.prototype.asPromise()用法及代碼示例
- Mongoose Schema Connection.prototype.set()用法及代碼示例
- Mongoose Schema Connection.prototype.close()用法及代碼示例
- 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.dropDatabase() API。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。