當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Mongoose Aggregate.prototype.match()用法及代碼示例


Mongoose API 的 Aggregate API.prototype.match() 函數用於查找數據庫中與 API 參數中提到的條件相匹配的現有文檔。

用法

Aggregate.prototype.match()

參數:它接受上麵提到的以下 4 個參數,如下所述:

  • args: 它是一個 Mongoose 對象,用於標識運算符的匹配條件。

返回類型:它返回匹配的文檔作為響應。

設置 Node.js Mongoose 模塊:

步驟 1:使用以下命令創建 Node.js 應用程序:

npm init

步驟 2:創建 NodeJS 應用程序後,使用以下命令安裝所需的模塊:

npm install mongoose

下麵的示例將演示 Mongoose Aggregate API.prototype.match() 方法。

示例 1:在此示例中,我們將使用此方法查找名為“Luffy”的現有文檔。

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, 
        select: false
    }, 
    age: { 
        type: Number, 
    } 
}); 
  
const personsArray = [ 
    { 
        name: 'Luffy', 
        age: 19 
    }, 
    { 
        name: 'Nami', 
        age: 30 
    }, 
    { 
        name: 'Zoro', 
        age: 35 
    } 
] 
  
const Person = mongoose.model('Person', personSchema); 
  
(async () => { 
    await Person.insertMany(personsArray); 
    const res = await Person.aggregate() 
        .match({ name: 'Luffy' }); 
  
    console.log({ res }); 
})()

運行應用程序的步驟:從項目的根目錄使用以下命令運行應用程序:

node main.js

輸出:

使用 MongoDB Compass 的數據庫的 GUI 表示:

示例 2:在此示例中,我們將使用此方法查找名稱為 “Nami” 或 “Zoro” 的現有文檔。

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, 
        select: false
    }, 
    age: { 
        type: Number, 
    } 
}); 
  
const personsArray = [ 
    { 
        name: 'Luffy', 
        age: 19 
    }, 
    { 
        name: 'Nami', 
        age: 30 
    }, 
    { 
        name: 'Zoro', 
        age: 35 
    } 
] 
  
const Person = mongoose.model('Person', personSchema); 
  
(async () => { 
    await Person.insertMany(personsArray); 
    const res = await Person.aggregate() 
        .match({ name: { $in: ['Nami', 'Zoro'] } }); 
  
    console.log({ res }); 
})()

運行應用程序的步驟:從項目的根目錄使用以下命令運行應用程序:

node main.js

輸出:

使用 MongoDB 指南針的數據庫的 GUI 表示:

參考: https://mongoosejs.com/docs/api/aggregate.html#aggregate_Aggregate-match



相關用法


注:本文由純淨天空篩選整理自dishebhbhayana大神的英文原創作品 Mongoose Aggregate.prototype.match() API。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。