Mongoose API 的 Aggregate API.prototype.limit() 函數用於限製傳遞到聚合器管道中下一個階段的文檔數量。
用法:
Aggregate.prototype.limit()
參數:它接受單個參數,如下所述:
- num: 它是一個數字,定義傳遞到下一階段的最大文檔數。
返回類型:它返回聚合文檔作為響應。
設置 Node.js Mongoose 模塊:
步驟 1:使用以下命令創建 Node.js 應用程序:
npm init
步驟 2:創建 NodeJS 應用程序後,使用以下命令安裝所需的模塊:
npm install mongoose
下麵的示例將演示 Mongoose Aggregate API.prototype.limit() 方法。
示例 1:在此示例中,我們將使用此方法從響應中返回前 2 個文檔。
文件名:main.js
Javascript
const mongoose = require('mongoose')
// Database connection
mongoose.connect('mongodb://localhost:27017/query-helpers',
{
dbName: 'event_db',
useNewUrlParser: true,
useUnifiedTopology: true
}, err => err ? console.log(err)
: console.log('Connected to database'));
const personSchema = new mongoose.Schema({
name: {
type: String,
},
age: {
type: Number,
}
});
const personsArray = [
{
name: 'Luffy',
age: 19
},
{
name: 'Nami',
age: 20
},
{
name: 'Zoro',
age: 35
}
]
const Person = mongoose.model('Person', personSchema);
(async () => {
await Person.insertMany(personsArray);
const res = await Person.aggregate().limit(2);
console.log({ res });
})()
運行應用程序的步驟:從項目的根目錄使用以下命令運行應用程序:
node main.js
輸出:
使用 MongoDB Compass 的數據庫的 GUI 表示:
示例 2:在此示例中,我們將使用此方法來限製響應中的前 10 個文檔。
文件名:main.js
Javascript
const mongoose = require('mongoose')
// Database connection
mongoose.connect('mongodb://localhost:27017/query-helpers',
{
dbName: 'event_db',
useNewUrlParser: true,
useUnifiedTopology: true
}, err => err ? console.log(err)
: console.log('Connected to database'));
const personSchema = new mongoose.Schema({
name: {
type: String,
},
age: {
type: Number,
}
});
const personsArray = [
{
name: 'Luffy',
age: 19
},
{
name: 'Nami',
age: 20
},
{
name: 'Zoro',
age: 35
}
]
const Person = mongoose.model('Person', personSchema);
(async () => {
await Person.insertMany(personsArray);
const res = await Person.aggregate().limit(10);
console.log({ res });
})()
運行應用程序的步驟:從項目的根目錄使用以下命令運行應用程序:
node main.js
輸出:
使用 MongoDB 指南針的數據庫的 GUI 表示:
參考: https://mongoosejs.com/docs/api/aggregate.html#aggregate_Aggregate-limit
相關用法
- Mongoose Aggregate.prototype.lookup()用法及代碼示例
- Mongoose Aggregate.prototype.catch()用法及代碼示例
- Mongoose Aggregate.prototype.exec()用法及代碼示例
- Mongoose Aggregate.prototype.model()用法及代碼示例
- Mongoose Aggregate.prototype.skip()用法及代碼示例
- Mongoose Aggregate.prototype.then()用法及代碼示例
- Mongoose Aggregate.prototype.append()用法及代碼示例
- Mongoose Aggregate.prototype.sortByCount()用法及代碼示例
- Mongoose Aggregate.prototype.project()用法及代碼示例
- Mongoose Aggregate.prototype.pipeline()用法及代碼示例
- Mongoose Aggregate.prototype.match()用法及代碼示例
- Mongoose Aggregate.prototype.cursor()用法及代碼示例
- Mongoose Aggregate.prototype.sort()用法及代碼示例
- Mongoose Aggregate.prototype.addFields()用法及代碼示例
- 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()用法及代碼示例
注:本文由純淨天空篩選整理自dishebhbhayana大神的英文原創作品 Mongoose Aggregate.prototype.limit() API。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。