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


Mongoose SchemaType.prototype.select()用法及代码示例


Mongoose 是针对 node.js 环境的 MongoDB 对象建模和处理。 Mongoose SchemaType 选择属性是一个 SchemaType 方法,它允许我们为 mongoose 模式中的特定路径设置默认的 select() 行为。让我们通过一些例子来更多地了解这一点。

创建节点应用程序并安装 Mongoose:

步骤1:使用以下命令创建节点应用程序:

mkdir folder_name
cd folder_name
npm init -y
touch main.js

步骤 2:创建 ReactJS 应用程序后,使用以下命令安装所需的模块:

npm install mongoose

项目结构: 它将如下所示。

示例 1:在本例中,我们将名称路径的 select 属性设置为 false,以便不将该路径包含在来自 DB 的数据的日志中。

文件名: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, 
        select: false
    }, 
    email: { 
        type: String 
    } 
}); 
  
const Person = mongoose.model('Person', personSchema); 
const person1 = new Person({ name: 'John', email: 'john@test.com' }); 
const person2 = new Person({ name: 'Doe', email: 'doe@test.com' }); 
  
(async function () { 
    await person1.save(); 
    await person2.save(); 
    const persons = await Person.find() 
    console.log(persons); 
})()

运行应用程序的步骤:从项目的根目录使用以下命令运行应用程序:

node main.js

输出:

示例 2:在此示例中,我们将名称路径的 select 属性设置为 true,但在查询级别覆盖此设置以将其变为 false,以免在数据库数据的日志中包含此路径。

文件名: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, 
        select: true
    }, 
    email: { 
        type: String, 
    } 
}); 
  
const Person = mongoose.model('Person', personSchema); 
const person1 = new Person({ name: 'John', email: 'john@test.com' }); 
const person2 = new Person({ name: 'Doe', email: 'doe@test.com' }); 
  
(async function () { 
    await person1.save(); 
    await person2.save(); 
    const persons = await Person.find().select('-name') 
    console.log(persons); 
})()

运行应用程序的步骤:从项目的根目录使用以下命令运行应用程序:

node main.js

输出:

参考:https://mongoosejs.com/docs/api/schematype.html#schematype_SchemaType-select



相关用法


注:本文由纯净天空筛选整理自dishebhbhayana大神的英文原创作品 Mongoose SchemaType.prototype.select() API。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。