Mongoose API 的 Aggregate API.prototype.pipeline() 方法用于执行聚合任务。它允许我们以数组的形式获取当前的管道操作对象。获取我们用于执行聚合任务的所有当前管道操作或管道方法非常有用。
句法:
aggregate().project( specifications ).pipeline();
Parameters: 该方法不接受任何参数。
返回值:此方法返回当前管道对象的数组。
设置 Node.js Mongoose 模块:
步骤 1:使用以下命令创建 Node.js 应用程序:
npm init
步骤 2:创建 NodeJS 应用程序后,使用以下命令安装所需的模块:
npm install mongoose
项目结构: 项目结构将如下所示:
示例 1:在此示例中,我们使用 mongoose 建立了数据库连接,并通过 userSchema 定义了模型,具有三个列或字段 “_id”、“name” 和 “bornYear”。最后,我们呼吁pipleline()方法获取当前管道运行状态。
文件名: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 userSchema = new mongoose.Schema({
name: String,
bornYear: Number
});
const User = mongoose.model('User', userSchema);
const currentPipeline = User
.aggregate([{ $project: { _id: 0, bornYear: 1 } }])
.pipeline()
console.log(currentPipeline)
运行程序的步骤:要运行应用程序,请从项目的根目录执行以下命令:
node app.js
输出:
[ { '$project': { _id: 0, bornYear: 1 } } ]
示例 2:在此示例中,我们使用 mongoose 建立了数据库连接,并通过 userSchema 定义了模型,具有三个列或字段 “_id”、“name” 和 “bornYear”。在这个例子中,我们有两个管道操作项目和按计数排序。通过使用pipeline()方法我们得到了两个管道操作的结果。
Javascript
// Require mongoose module
const mongoose = require("mongoose");
// Set Up the Database connection
mongoose.connect("mongodb://localhost:27017/geeksforgeeks", {
useNewUrlParser: true,
useUnifiedTopology: true,
});
const userSchema = new mongoose.Schema({
name: String,
bornYear: Number
});
const User = mongoose.model('User', userSchema);
const currentPipeline = User
.aggregate()
.project({ name: 1 })
.sortByCount({ 'bornYear': 1 })
.pipeline()
console.log(currentPipeline)
运行程序的步骤:要运行应用程序,请从项目的根目录执行以下命令:
node app.js
输出:
[ { '$project': { name: 1 } }, { '$sortByCount': { bornYear: 1 } } ]
参考:https://mongoosejs.com/docs/api/aggregate.html#aggregate_Aggregate-pipeline
相关用法
- Mongoose Aggregate.prototype.project()用法及代码示例
- Mongoose Aggregate.prototype.catch()用法及代码示例
- 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.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()用法及代码示例
注:本文由纯净天空筛选整理自sakshio0hoj大神的英文原创作品 Mongoose Aggregate.prototype.pipeline() API。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。