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


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


Mongoose API 的 Aggregate API.prototype.cursor() 方法用于执行聚合任务。它允许我们迭代结果集。聚合游标对象允许我们对结果集中的每个文档对象一一执行迭代任务。

用法:

aggregate(...).cursor( options )

Parameters: 该方法接受单个参数,如下所述:

  • options: 它是一个用于设置方法参数的对象。这个对象有一个批量大小可用于设置光标批量大小的参数。

返回值:它返回表示当前聚合管道操作的游标对象。

设置 Node.js 应用程序:

步骤 1:使用以下命令创建 Node.js 应用程序:

npm init

步骤 2:创建 NodeJS 应用程序后,使用以下命令安装所需的模块:

npm install mongoose

项目结构: 项目结构将如下所示:

数据库结构:数据库结构如下所示,集合中存在以下文档。

示例 1:在此示例中,我们使用 mongoose 建立了数据库连接,并通过 cricketerSchema 定义了模型,具有三列或字段 “_id”、“name” 和 “nationality”。最后,我们呼吁cursor()聚合对象上的方法到游标的引用。为了迭代聚合管道返回的所有文档对象,我们使用eachAsyn()方法上光标对象。

文件名: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 cursorReference = Cricketer 
    .aggregate([{ $project: { name: 1 } }]) 
    .cursor({ batchSize: 1000 }); 
  
cursorReference.eachAsync((document, count) => { 
    console.log(document, count); 
}) 

运行程序的步骤:要运行应用程序,请从项目的根目录执行以下命令:

node app.js

输出:

{ _id: 3, name: 'Ben Stokes' } 0
{ _id: 2, name: 'David Warner' } 1 
{ _id: 5, name: 'Aaron Finch' } 2  
{ _id: 7, name: 'K L Rahul' } 3    
{ _id: 6, name: 'Hardik Pandya' } 4
{ _id: 1, name: 'Virat Kohli' } 5  
{ _id: 4, name: 'Rohit Sharma' } 6 

示例 2:在此示例中,我们使用 mongoose 建立了数据库连接,并通过 cricketerSchema 定义了模型,具有三列或字段 “_id”、“name” 和 “nationality”。最后,为了获取我们正在使用的当前聚合管道的第一个文档next()游标对象上的方法,该方法返回当前管道操作的第一个文档。

文件名: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 } }]) 
    .cursor({ batchSize: 1000 }) 
    .next() 
    .then((firstDocument) => { 
        console.log(firstDocument) 
    });

运行程序的步骤:要运行应用程序,请从项目的根目录执行以下命令:

node app.js

输出:

{ _id: 3, name: 'Ben Stokes' }

参考:https://mongoosejs.com/docs/api/aggregate.html#aggregate_Aggregate-cursor



相关用法


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