Mongoose API 的 Mongoose Schema API .prototype.virtual() 方法用于 Schema 对象。它允许我们使用特定名称和方法定义在每个模式上定义虚拟方法和类型。让我们通过一个例子来理解virtual()方法。
用法:
schemaObject.virtual( <name>, <options> );
Parameters: 该方法接受两个参数,如下所述:
- name: 它用于指定模式上的虚拟方法名称
- options:它用于指定该虚拟方法的各种属性。
返回值:该方法可以返回任何虚拟类型值。
设置 Node.js Mongoose 模块:
步骤 1:使用以下命令创建 Node.js 应用程序:
npm init
步骤 2:创建 NodeJS 应用程序后,使用以下命令安装所需的模块:
npm install mongoose
项目结构: 项目结构将如下所示:
示例 1:下面的示例说明了 Mongoose Schema 的函数virtual()方法。在这个例子中,我们定义了一个名为例子1在学生模式这是返回一个字符串。
文件名: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: String,
rollNumber: Number
});
studentSchema.virtual('example1').get(() => {
return 'Virtual Method'
});
console.log(studentSchema.virtuals.example1.getters[0].call());
运行程序的步骤:要运行应用程序,请从项目的根目录执行以下命令:
node app.js
输出:
Virtual Method
示例 2:下面的示例说明了 Mongoose Schema 的函数virtual()方法。在这个例子中,我们定义了一个名为端口号这是返回端口号。
文件名: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: String,
rollNumber: Number
});
studentSchema.virtual('portNumber').get(() => {
return 27017
});
console.log(studentSchema.virtuals.portNumber);
运行程序的步骤:要运行应用程序,请从项目的根目录执行以下命令:
node app.js
输出:
VirtualType { path: 'portNumber', getters: [ [Function (anonymous)] ], setters: [], options: {} }
参考:https://mongoosejs.com/docs/api/schema.html#schema_Schema-virtual
相关用法
- Mongoose Schema.prototype.plugin()用法及代码示例
- Mongoose Schema.prototype.static()用法及代码示例
- Mongoose Schema.prototype.pre()用法及代码示例
- 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.virtual() API。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。