Mongoose API 的 Aggregate API.prototype.exec() 方法用于执行聚合任务。它允许我们在当前模型上执行聚合管道。它接受回调函数作为参数并返回一个承诺。
用法:
aggregate.exec( callback )
Parameters: 该方法接受单个参数,如下所述:
- callback:它用于处理方法返回的承诺。
返回值:此方法返回一个可以使用回调函数或使用 async-await 处理的承诺。
设置 Node.js 应用程序:
步骤 1:使用以下命令创建 Node.js 应用程序:
npm init
步骤 2:创建 NodeJS 应用程序后,使用以下命令安装所需的模块:
npm install mongoose
项目结构: 项目结构将如下所示:
数据库结构:数据库结构如下所示,集合中存在以下文档。
示例 1:在此示例中,我们使用 mongoose 建立了数据库连接,并通过 cricketerSchema 定义了模型,具有三列或字段 “_id”、“name” 和 “nationality”。最后,我们添加了管道操作来选择名字集合中的字段。我们正在呼吁exec()方法来获取结果集。
文件名: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);
Cricketer
.aggregate([{ $project: { name: 1 } }])
.exec((error, result) => {
if (error) {
console.log(error);
} else {
console.log(result);
}
})
运行程序的步骤:要运行应用程序,请从项目的根目录执行以下命令:
node app.js
输出:
[ { _id: 3, name: 'Ben Stokes' }, { _id: 2, name: 'David Warner' }, { _id: 5, name: 'Aaron Finch' }, { _id: 7, name: 'K L Rahul' }, { _id: 6, name: 'Hardik Pandya' }, { _id: 1, name: 'Virat Kohli' }, { _id: 4, name: 'Rohit Sharma' } ]
示例 2:在此示例中,我们使用 mongoose 建立了数据库连接,并通过 cricketerSchema 定义了模型,具有三列或字段 “_id”、“name” 和 “nationality”。最后,我们正在处理返回的承诺exec()方法使用异步函数和等待关键词。
文件名: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 execExample = async () => {
const result = await Cricketer
.aggregate([{
$project: { nationality: 1, _id: 0, name: 1 }
}])
.exec();
console.log(result);
}
execExample();
运行程序的步骤:要运行应用程序,请从项目的根目录执行以下命令:
node app.js
输出:
[ { name: 'Ben Stokes', nationality: 'England ' }, { name: 'David Warner', nationality: 'Australia' }, { name: 'Aaron Finch', nationality: 'Australia ' }, { name: 'K L Rahul', nationality: 'India ' }, { name: 'Hardik Pandya', nationality: 'India ' }, { name: 'Virat Kohli', nationality: 'India' }, { name: 'Rohit Sharma', nationality: 'India ' } ]
参考:https://mongoosejs.com/docs/api/aggregate.html#aggregate_Aggregate-exec
相关用法
- Mongoose Aggregate.prototype.catch()用法及代码示例
- 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.cursor()用法及代码示例
- 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.exec() API。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。