Mongoose Aggregate 原型。Mongoose API 的model() 方法用於執行聚合任務。它允許我們更改任何特定聚合管道的模型。此方法接受模型對象以返回該特定聚合管道的模型對象。讓我們通過一個例子來理解model()方法。
用法:
aggregate.model( model_name );
參數:該方法接受單個參數,如下所述:
- model:該方法將模型對象作為參數。
返回值:此方法返回將在其上執行聚合管道的模型對象。
設置 Node.js 應用程序:
步驟 1:使用以下命令創建 Node.js 應用程序:
npm init
步驟 2:創建 NodeJS 應用程序後,使用以下命令安裝所需的模塊:
npm install mongoose
項目結構: 項目結構將如下所示:
示例 1:在此示例中,我們將說明以下函數model()方法通過在 Student 模型上定義聚合管道來實現。
文件名: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,
});
const studentSchema = new mongoose.Schema({
name: { type: String, required: true },
age: { type: Number, required: false },
rollNumber: { type: Number },
});
const Student =
connectionObject.model('Student', studentSchema);
const aggregate =
Student.aggregate([{ $project: { age: 1 } }])
console.log(aggregate.model() === Student);
運行程序的步驟:要運行應用程序,請從項目的根目錄執行以下命令:
node app.js
輸出:
true
示例 2:在此示例中,我們將說明以下函數model()方法通過傳遞顧客model 到學生模型聚合管道返回的聚合對象。
文件名: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,
});
const studentSchema = new mongoose.Schema({
name: { type: String, required: true },
age: { type: Number, required: false },
rollNumber: { type: Number },
});
const Student = connectionObject.model('Student', studentSchema);
const Customer = connectionObject.model(
'Customer', new mongoose.Schema({
name: String,
address: String,
orderNumber: Number,
}));
const aggregate = Student.aggregate([{ $project: { age: 1 } }])
aggregate.model(Customer);
console.log(aggregate.model() === Customer);
運行程序的步驟:要運行應用程序,請從項目的根目錄執行以下命令:
node app.js
輸出:
false
參考:https://mongoosejs.com/docs/api/aggregate.html#aggregate_Aggregate-model
相關用法
- Mongoose Aggregate.prototype.match()用法及代碼示例
- Mongoose Aggregate.prototype.catch()用法及代碼示例
- Mongoose Aggregate.prototype.exec()用法及代碼示例
- 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.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.model() API。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。