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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。