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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。