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


Mongoose Schema.prototype.pre()用法及代碼示例


Mongoose Schema API pre() 方法用於向 mongoose Schema 方法添加 pre-hook,可用於執行 pre Schema 方法操作。

用法:

Schema.prototype.pre(methodName, options, callback)

參數:它接受如上所述和如下所述的以下參數:

  • methodName:它表示 Schema 方法名稱的名稱,或者方法名稱的正則表達式,以將預中間件應用到
  • options:它是一個可選的 mongoose 對象,包含options.documentoptions.query.
  • callback:它是一個回調函數,接受參數 next。

返回類型:它返回一個 Schema 對象作為響應。

創建節點應用程序並安裝 Mongoose:

步驟1:使用以下命令創建節點應用程序:

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

步驟 2:完成 Node.js 應用程序後,使用以下命令安裝所需的模塊:

npm install mongoose

示例 1:在此示例中,我們將使用此方法來記錄應用於 mongoose 查詢的過濾器。

文件名:main.js

Javascript


// Importing the module 
const mongoose = require('mongoose') 
  
// Creating the 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, 
    }, 
    age: { 
        type: Number, 
    } 
}); 
  
personSchema.pre(/^find/, function (next) { 
    console.log(this.getFilter()); 
}); 
  
const personsArray = [ 
    { 
        name: 'Luffy', 
        age: 20 
    }, 
    { 
        name: 'Nami', 
        age: 20, 
    }, 
    { 
        name: 'Zoro', 
        age: 35 
    } 
] 
  
const Person = mongoose.model('Person', personSchema); 
  
(async () => { 
    await Person.insertMany(personsArray) 
    await Person.find({ name: "Luffy", age: 20 }) 
})()

運行應用程序的步驟:從項目的根目錄使用以下命令運行應用程序:

node main.js

輸出:

使用 MongoDB 指南針的數據庫的 GUI 表示:

示例 2:在此示例中,我們將使用此方法來更新 mongoose 文檔的名稱,然後將其保存到 MongoDB

文件名:main.js

Javascript


// Importing the module 
const mongoose = require('mongoose') 
  
// Creating the 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, 
    }, 
    age: { 
        type: Number, 
    } 
}); 
  
personSchema.pre('save', function (next) { 
    if (this.name === 'Luffy') { 
        this.name = 'Nami'
    } 
  
    next() 
}); 
  
const Person = mongoose.model('Person', personSchema); 
  
(async () => { 
    const person = new Person({ name: 'Luffy', age: '19' }) 
    await person.save() 
})()

運行應用程序的步驟:從項目的根目錄使用以下命令運行應用程序:

node main.js

使用 MongoDB 指南針的數據庫的 GUI 表示:

參考: https://mongoosejs.com/docs/api/schema.html#schema_Schema-pre



相關用法


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