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


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


Query.prototype.cursor() 函数返回一个围绕 MongoDB 驱动程序游标的包装器。这个函数会触发 pre find hooks,而不是 post find hooks.Syntax:

Query.prototype.cursor()

参数:此函数有一个可选参数,即转换,它是一个接受 mongoose 文档的可选函数。返回值:此函数返回 QueryCursor 对象。安装 mongoose:

npm install mongoose

安装 mongoose 模块后,您可以使用命令在命令提示符下检查您的 mongoose 版本。

npm mongoose --version

现在,创建一个文件夹并添加一个文件,例如 index.js,如下所示。

数据库:这里使用的示例数据库如下所示:



范例1:

index.js


const mongoose = require('mongoose');
  
// Database connection
mongoose.connect('mongodb://127.0.0.1:27017/geeksforgeeks', {
    useNewUrlParser:true,
    useCreateIndex:true,
    useUnifiedTopology:true
});
  
// User model
const User = mongoose.model('User', { 
    name:{ type:String },
    age:{ type:Number }
});
  
var cursor = User.find({}).cursor();
  
cursor.next(function(error, doc) {
  console.log(doc);
});

运行程序的步骤:

项目结构将如下所示:

使用以下命令运行index.js文件:

node index.js

输出:



{ _id:5ebb9129a99bde77b2efb809, name:‘Gourav’, age:10, __v:0 }

范例2:

index.js


const express = require('express');
const mongoose = require('mongoose');
const app = express()
  
// Database connection
mongoose.connect('mongodb://127.0.0.1:27017/geeksforgeeks', {
    useNewUrlParser:true,
    useCreateIndex:true,
    useUnifiedTopology:true
});
  
// User model
const User = mongoose.model('User', { 
    name:{ type:String },
    age:{ type:Number }
});
  
var cursor = User.find({}).cursor();
  
//first call
cursor.next(function(error, doc) {
  console.log(doc);
});
  
//second call
cursor.next(function(error, doc) {
  console.log(doc);
});
  
//third call
cursor.next(function(error, doc) {
    console.log(doc);
});
  
app.listen(3000, function(error ) {
    if(error) console.log(error)
    console.log("Server listening on PORT 3000")
});

运行程序的步骤:

项目结构将如下所示:

使用以下命令运行index.js文件:

node index.js

输出:

Server listening on PORT 3000
{ _id:5ebb9129a99bde77b2efb809, name:‘Gourav’, age:10, __v:0 }
{ _id:5ebc3669a99bde77b2efb9ba, name:‘Lalit’, age:25, __v:0 }
{ _id:5ebc367da99bde77b2efb9bf, name:‘Piyush’, age:5, __v:0 }

参考:
https://mongoosejs.com/docs/api/query.html#query_Query-cursor




相关用法


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