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


Mongoose find()用法及代碼示例


find()函數用於從MongoDB數據庫中查找特定數據。它有3個參數,分別是查詢(也稱為條件),查詢投影(用於提及要從查詢中包含或排除哪些字段),最後一個參數是常規查詢選項(例如limit,skip等) 。

Mongoose 模塊的安裝:

  1. 您可以訪問“安裝 Mongoose ”模塊的鏈接。您可以使用此命令安裝此軟件包。
    npm install mongoose
  2. 安裝 Mongoose 模塊後,您可以使用命令在命令提示符下檢查您的 Mongoose 版本。
    npm version mongoose
  3. 之後,您可以僅創建一個文件夾並添加一個文件,例如index.js。要運行此文件,您需要運行以下命令。
    node index.js

文件名: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 } 
}); 
  
// Only one parameter [query/condition] 
// Find all documents that matches the 
// condition name='Punit' 
User.find({ name:'Punit'}, function (err, docs) { 
    if (err){ 
        console.log(err); 
    } 
    else{ 
        console.log("First function call:", docs); 
    } 
}); 
  
// Only Two parameters [condition, query projection] 
// Here age:0 means don't include age field in result  
User.find({ name:'Punit'}, {age:0}, function (err, docs) { 
    if (err){ 
        console.log(err); 
    } 
    else{ 
        console.log("Second function call:", docs); 
    } 
}); 
  
// All three parameter [condition, query projection, 
// general query options] 
// Fetch first two records whose age >= 10  
// Second parameter is null i.e. no projections 
// Third parameter is limit:2 i.e. fetch 
// only first 2 records 
User.find({ age:{$gte:10}}, null, {limit:2}, function (err, docs) { 
    if (err){ 
        console.log(err); 
    } 
    else{ 
        console.log("Third function call:", docs); 
    } 
});

運行程序的步驟:

  1. 項目結構將如下所示:
    project structure
  2. 確保使用以下命令安裝了mongoose模塊:
    npm install mongoose
  3. 以下是執行find()函數之前數據庫中的示例數據,您可以使用任何GUI工具或終端來查看數據庫,就像我們使用Robo3T GUI工具一樣,如下所示:
    Database
  4. 使用以下命令運行index.js文件:
    node index.js

這樣便可以在Node.js和MongoDB中使用Mongoose find()函數。




相關用法


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