Mongoose API 的 Mongoose Schema API .prototype.plugin() 方法用於 Schema 對象。它允許我們為模式創建插件。在插件的幫助下,我們可以對多個模式使用相同的邏輯。讓我們通過一個例子來理解plugin()方法。
用法:
schemaObject.plugin( <callback_function>, <options> );
Parameters: 該方法接受兩個參數,如下所述:
- callback:它用於指定回調函數。
- options: 它用於識別各種屬性。
返回值:該方法不返回任何值。
設置 Node.js Mongoose 模塊:
步驟 1:使用以下命令創建 Node.js 應用程序:
npm init
步驟 2:創建 NodeJS 應用程序後,使用以下命令安裝所需的模塊:
npm install mongoose
項目結構: 項目結構將如下所示:
示例 1:下麵的示例說明了 Mongoose Schema plugin() 方法的函數。我們正在訪問模式對象上的 () 方法。
文件名:app.js
Javascript
// Require mongoose module
const mongoose = require("mongoose");
// Set Up the Database connection
const URI = "mongodb://localhost:27017/geeksforgeeks"
const connectionObject = mongoose.createConnection(URI, {
useNewUrlParser: true,
useUnifiedTopology: true,
});
const customerSchema = new mongoose.Schema({
name: String,
address: String,
orderNumber: Number,
});
customerSchema.plugin((schema => {
console.log(schema.pathType('address')) }))
const Customer = connectionObject
.model('Customer', customerSchema);
運行程序的步驟:要運行應用程序,請從項目的根目錄執行以下命令:
node app.js
輸出:
real
示例 2:下麵的示例說明了 Mongoose Schema plugin() 方法的函數。我們正在訪問模式對象上所需的 paths() 方法。此方法將返回架構級別所需的字段數組。
文件名:app.js
Javascript
// Require mongoose module
const mongoose = require("mongoose");
// Set Up the Database connection
const URI = "mongodb://localhost:27017/geeksforgeeks"
const connectionObject = mongoose.createConnection(URI, {
useNewUrlParser: true,
useUnifiedTopology: true,
});
const studentSchema = new mongoose.Schema({
name: { type: String, required: true },
age: Number,
rollNumber: { type: Number, required: true }
});
studentSchema.plugin((schemaObject => {
console.log(schemaObject.requiredPaths()) }))
const StudentModel = connectionObject
.model('Student', studentSchema);
運行程序的步驟:要運行應用程序,請從項目的根目錄執行以下命令:
node app.js
輸出:
[ 'rollNumber', 'name' ]
參考:https://mongoosejs.com/docs/api/schema.html#schema_Schema-plugin
相關用法
- Mongoose Schema.prototype.pre()用法及代碼示例
- Mongoose Schema.prototype.virtual()用法及代碼示例
- Mongoose Schema.prototype.static()用法及代碼示例
- Mongoose SchemaType.prototype.ref()用法及代碼示例
- Mongoose SchemaType.prototype.default()用法及代碼示例
- Mongoose SchemaType.prototype.immutable()用法及代碼示例
- Mongoose SchemaType.prototype.unique()用法及代碼示例
- Mongoose Schema Connection.prototype.asPromise()用法及代碼示例
- Mongoose SchemaType.prototype.validate()用法及代碼示例
- Mongoose Schema Connection.prototype.dropCollection()用法及代碼示例
- Mongoose SchemaType.prototype.get()用法及代碼示例
- Mongoose Schema Connection.prototype.set()用法及代碼示例
- Mongoose SchemaType.prototype.text()用法及代碼示例
- Mongoose SchemaType.prototype.set()用法及代碼示例
- Mongoose SchemaType.prototype.required()用法及代碼示例
- Mongoose SchemaType.prototype.select()用法及代碼示例
- Mongoose Schema Connection.prototype.dropDatabase()用法及代碼示例
- Mongoose SchemaType.prototype.transform()用法及代碼示例
- Mongoose SchemaType.prototype.index()用法及代碼示例
- Mongoose Schema Connection.prototype.close()用法及代碼示例
- Mongoose Schema Connection.prototype.useDb()用法及代碼示例
- Mongoose countDocuments()用法及代碼示例
- Mongoose deleteMany()用法及代碼示例
- Mongoose deleteOne()用法及代碼示例
- Mongoose estimatedDocumentCount()用法及代碼示例
注:本文由純淨天空篩選整理自sakshio0hoj大神的英文原創作品 Mongoose Schema.prototype.plugin() API。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。