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