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


Mongoose Document Model.where()用法及代碼示例


Mongoose API 的 Model.where() 方法用於根據條件從集合中提取文檔。我們可以在任何模型上直接使用where(),在where()上我們可以輸入各種關係條件來獲得結果。 Model.where() 返回對象數組。每個對象都由集合中的文檔組成。

設置 Node.js 應用程序:

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

npm init

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

npm install mongoose

項目結構: 項目結構將如下所示:

示例 1:在此示例中,我們使用 mongoose 建立了數據庫連接,並通過 customerSchema 定義了模型,具有兩列 “name” 和 “orderCount”。最後,我們在 Customer 模型上使用 where 方法,它將根據我們提供的條件為我們提供一個對象數組。在此示例中,我們查找 “orderCount” 值大於 10 的文檔。

  • 應用程序.js:在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
}) 
  
// Defining customerSchema schema 
const customerSchema = new mongoose.Schema( 
    { name: String, orderCount: Number } 
) 
  
// Defining customerSchema model 
const Customer = mongoose.model('Customer', customerSchema); 
  
Customer.where('orderCount').gt(10).then(result => { 
    console.log(result) 
});

運行程序的步驟: 要運行應用程序,請從項目的根目錄執行以下命令:

node app.js

輸出:

[
    {
        _id: new ObjectId("6304e7c8c21ca86f5ea6fce4"),
        name: 'Customer3',
        orderCount: 20,
        __v: 0
    }
]

示例 2:在此示例中,我們查找 “orderCount” 值大於 5 且小於 20 的文檔。

  • 應用程序.js:在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
}) 
  
// Defining customerSchema schema 
const customerSchema = new mongoose.Schema( 
    { name: String, orderCount: Number } 
) 
  
// Defining customerSchema model 
const Customer = mongoose.model('Customer', customerSchema); 
  
Customer.where('orderCount').gt(5).lt(20).then(result => { 
    console.log(result) 
});

運行程序的步驟: 要運行應用程序,請從項目的根目錄執行以下命令:

node app.js

輸出:

[
    {
        _id: new ObjectId("6304e7c8c21ca86f5ea6fce3"),
        name: 'Customer2',
        orderCount: 10,
        __v: 0
    },
    {
        _id: new ObjectId("6305fa9f63f7ccbdbc0ee95c"),
        name: 'Customer3',
        orderCount: 10,
        __v: 0
    },
    {
        _id: new ObjectId("6305fa9f63f7ccbdbc0ee95d"),
        name: 'Customer4',
        orderCount: 10,
        __v: 0
    }
]

參考:https://mongoosejs.com/docs/api/model.html#model_Model-where



相關用法


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