当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Mongoose Aggregate.prototype.model()用法及代码示例


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



相关用法


注:本文由纯净天空筛选整理自kartikmukati大神的英文原创作品 Mongoose Aggregate.prototype.model() API。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。