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


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


Mongoose 是 MongoDB 的对象数据建模 (ODM) 库。它定义了一个强类型模式,具有默认值和模式验证,稍后将其映射到 MongoDB 文档。

slice方法用于限制查询返回的元素数量。

用法:

Modal.find().where([path]).slice(field, val)

或者

Modal.find().slice([field], val)

参数:

  • path: path 是一个字符串,表示要搜索的字段名称,这是一个must-have 参数。
  • field: field 是一个字符串,表示要切片的字段名称。
  • val: 它是表示范围的数字或两个数字的数组。如果这是一个数字,则范围将从 0 开始。

Mongoose 模块的安装:

第 1 步:您可以访问安装 mongoose 模块的链接。您可以使用此命令安装此软件包。

npm install mongoose

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

npm version mongoose

步骤3:之后,您可以创建一个文件夹并添加一个文件,例如index.js,要运行该文件,您需要运行以下命令。

node index.js

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

示例 1:我们有一些客户数据,其中包含他们的姓名、兴趣和订单计数。兴趣包含一系列多个游戏。我们希望将所有感兴趣的元素分成 3 个元素。

index.js

Javascript


// Require mongoose module 
const mongoose = require('mongoose'); 
  
// Set Up the Database connection 
mongoose.connect( 
    'mongodb://localhost:27017/geeksforgeeks', { 
    useNewUrlParser: true, 
    useUnifiedTopology: true
}) 
  
// Defining customerSchema schema 
const customerSchema = new mongoose.Schema( 
    { name: String, interest: Array, orderCount: Number } 
) 
  
// Defining customerSchema model 
const Customer = mongoose.model( 
    'Customer', customerSchema); 
  
Customer.find().slice("interest", 3).then((res) => { 
    console.log(res) 
}).catch((err) => { 
    console.log(err) 
}); 

运行应用程序的步骤:

第 1 步:确保您已使用以下命令安装 mongoose 模块:

npm install mongoose

步骤2:下面是函数执行之前数据库中的示例数据,您可以使用任何GUI工具或终端来查看数据库,就像我们使用MongoDB指南针GUI工具一样,如下所示:

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

node index.js

输出:

示例 2:在此示例中,我们对某个范围内的元素进行切片。

index.js

Javascript


// Require mongoose module 
const mongoose = require('mongoose'); 
  
// Set Up the Database connection 
mongoose.connect( 
    'mongodb://localhost:27017/geeksforgeeks', { 
    useNewUrlParser: true, 
    useUnifiedTopology: true
}) 
  
// Defining customerSchema schema 
const customerSchema = new mongoose.Schema( 
    { name: String, interest: Array, orderCount: Number } 
) 
  
// Defining customerSchema model 
const Customer = mongoose.model( 
    'Customer', customerSchema); 
  
Customer.find().slice("interest", [2, 4]).then((res) => { 
    console.log(res) 
}).catch((err) => { 
    console.log(err) 
}); 

运行应用程序的步骤:使用以下命令运行index.js 文件:

node index.js

输出:

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



相关用法


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