Mongoose API 的 Aggregate API.prototype.catch() 方法用于执行聚合任务。它允许我们执行查询返回的承诺。它只接受或处理被拒绝的处理程序。它可以更有效地与异步函数一起使用。
用法:
aggregate(...).catch( callback_function )
Parameters: 该方法接受单个参数,如下所述:
- callback:这是一个回调函数。它用于处理被拒绝的处理程序。
返回值:该方法返回的 Promise 可以通过文档解决,也可以通过错误拒绝。
设置 Node.js 应用程序:
步骤 1:使用以下命令创建 Node.js 应用程序:
npm init
步骤 2:创建 NodeJS 应用程序后,使用以下命令安装所需的模块:
npm install mongoose
项目结构: 项目结构将如下所示:
数据库结构:数据库结构如下所示,集合中存在以下文档。
示例 1:在此示例中,我们使用 mongoose 建立了数据库连接,并通过 cricketerSchema 定义了模型,具有三列或字段 “_id”、“name” 和 “nationality”。最后,我们定义了一个异步函数,名为catch示例,和catch()负责处理返回的rejected Promise。
文件名:app.js
Javascript
// Require mongoose module
const mongoose = require("mongoose");
// Set Up the Database connection
mongoose.connect("mongodb://localhost:27017/geeksforgeeks", {
useNewUrlParser: true,
useUnifiedTopology: true,
});
const cricketerSchema = new mongoose.Schema({
_id: Number,
name: String,
nationality: String
});
const Cricketer = mongoose.model('Cricketers', cricketerSchema);
const catchExample = async () => {
const result = await Cricketer
.aggregate([{ $group: "$nationality" }])
.catch(err => {
console.log('Rejected Handler - ', err)
})
console.log(result)
}
catchExample();
运行程序的步骤:要运行应用程序,请从项目的根目录执行以下命令:
node app.js
输出:
Rejected Handler - MongoServerError: a group's fields must be specified in an object
示例 2:在此示例中,我们使用 mongoose 建立了数据库连接,并通过 cricketerSchema 定义了模型,具有三列或字段 “_id”、“name” 和 “nationality”。最后,我们定义了一个名为 catchExample2 的异步函数。在这个例子中,由于没有返回错误或者承诺没有被拒绝,我们可以看到结果集,输出变量负责保存结果集。
文件名:app.js
Javascript
// Require mongoose module
const mongoose = require("mongoose");
// Set Up the Database connection
mongoose.connect("mongodb://localhost:27017/geeksforgeeks", {
useNewUrlParser: true,
useUnifiedTopology: true,
});
const cricketerSchema = new mongoose.Schema({
_id: Number,
name: String,
nationality: String
});
const Cricketer = mongoose.model('Cricketers', cricketerSchema);
const catchExample2 = async () => {
const output = await Cricketer
.aggregate([{ $project: { name: 1, nationality: 1 } }])
.catch(error => {
console.log('Catch Rejected Handler - ', error)
})
console.log(output)
}
catchExample2();
运行程序的步骤:要运行应用程序,请从项目的根目录执行以下命令:
node app.js
输出:
[ { _id: 3, name: 'Ben Stokes', nationality: 'England ' }, { _id: 2, name: 'David Warner', nationality: 'Australia' }, { _id: 5, name: 'Aaron Finch', nationality: 'Australia ' }, { _id: 7, name: 'K L Rahul', nationality: 'India ' }, { _id: 6, name: 'Hardik Pandya', nationality: 'India ' }, { _id: 1, name: 'Virat Kohli', nationality: 'India' }, { _id: 4, name: 'Rohit Sharma', nationality: 'India ' } ]
参考:https://mongoosejs.com/docs/api/aggregate.html#aggregate_Aggregate-catch
相关用法
- Mongoose Aggregate.prototype.cursor()用法及代码示例
- Mongoose Aggregate.prototype.exec()用法及代码示例
- Mongoose Aggregate.prototype.model()用法及代码示例
- Mongoose Aggregate.prototype.skip()用法及代码示例
- Mongoose Aggregate.prototype.limit()用法及代码示例
- Mongoose Aggregate.prototype.then()用法及代码示例
- Mongoose Aggregate.prototype.append()用法及代码示例
- Mongoose Aggregate.prototype.sortByCount()用法及代码示例
- Mongoose Aggregate.prototype.project()用法及代码示例
- Mongoose Aggregate.prototype.pipeline()用法及代码示例
- Mongoose Aggregate.prototype.match()用法及代码示例
- Mongoose Aggregate.prototype.sort()用法及代码示例
- Mongoose Aggregate.prototype.addFields()用法及代码示例
- Mongoose Aggregate.prototype.lookup()用法及代码示例
- Mongoose Aggregate prototype.unionWith()用法及代码示例
- Mongoose Aggregate prototype.sample()用法及代码示例
- Mongoose Aggregate prototype.unwind()用法及代码示例
- Mongoose countDocuments()用法及代码示例
- Mongoose deleteMany()用法及代码示例
- Mongoose deleteOne()用法及代码示例
- Mongoose estimatedDocumentCount()用法及代码示例
- Mongoose exists()用法及代码示例
- Mongoose find()用法及代码示例
- Mongoose findById()用法及代码示例
- Mongoose findByIdAndDelete()用法及代码示例
注:本文由纯净天空筛选整理自kartikmukati大神的英文原创作品 Mongoose Aggregate.prototype.catch() API。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。