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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。