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


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


Mongoose 是针对 node.js 环境的 MongoDB 对象建模和处理。

Mongoose SchemaType 不可变属性将 mongoose 架构路径设置为不可变,也就是说,它不允许您更改路径值,除非架构类型的 isNew 属性设置为 true。让我们通过一些例子来更多地了解这一点。

用法:

mongoose.schema({
    [name]: {
        type: [type],
        immmutable: Boolean (true | false)
    }
})

Parameters: 它接受布尔值作为参数。

Return type: 它返回 SchemaType 作为响应。

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

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

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

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

npm install mongoose

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

使用 MongoDB 指南针的数据库的 GUI 表示:目前,该馆藏没有任何数据。

示例 1:在此示例中,我们将创建一个不可变属性的 getter姓名,并尝试通过直接将其分配给不同的名称来修改其值。

文件名:main.js

Javascript


//Importing the module 
const mongoose = require('mongoose') 
  
// Connecting to the database 
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, 
        immutable: true
    } 
}); 
  
const Person = mongoose.model('Person', personSchema); 
  
(async () => { 
    await Person.create({ name: 'John' }); 
    const person = await Person.findOne({ name: 'John' }); 
  
    console.log(person.isNew); 
    person.name = 'new name'; 
    console.log(person.name); 
})() 

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

node main.js

输出:我们看到结果中的值保持不变。

使用 MongoDB 指南针的数据库的 GUI 表示:

示例 2:在此示例中,我们将创建一个不可变属性名称的 getter,并尝试使用以下方法修改其值更新一mongoose Schema API 的辅助方法。

文件名: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, 
        immutable: true
    } 
}); 
  
const Person = mongoose.model('Person', personSchema); 
  
(async () => { 
    await Person.create({ name: 'John' }); 
    Person.updateOne({ name: 'John' }, { name: 'Doe' }, 
        { strict: 'throw' }) 
        .then(() => null, err => err) 
  
    const persons = await Person.find(); 
  
    console.log(persons); 
})() 

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

node main.js

输出:我们看到结果中的值保持不变。

使用 MongoDB 指南针的数据库的 GUI 表示:

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



相关用法


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