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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。