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