Mongoose 模式API.原型.static() 方法Mongoose API 的函数用于 Schema 对象。它允许我们使用模式对象为模型定义静态类方法。我们可以访问静止的模式对象上的方法来定义静态方法。让我们了解一下static() 方法使用一个例子。
用法:
schemaObject.static( method, callback );
参数:该方法接受两个参数,如下所述:
- method:它用于在模型的类级别指定方法名称。
- callback:它用于指定将为该方法执行特定任务的函数。
返回值:该方法可以根据我们的函数定义返回任何值。
设置 Node.js Mongoose 模块:
步骤 1:使用以下命令创建 Node.js 应用程序:
npm init
步骤 2:创建 NodeJS 应用程序后,使用以下命令安装所需的模块:
npm install mongoose
项目结构: 项目结构将如下所示:
示例 1:下面的示例说明了 Mongoose Schema 的函数static()方法。在此示例中,我们定义了名为的静态方法按地址查找客户,我们正在获取其值为地址字段值为印多尔, 和我们使用 then 和 catch 块将返回值作为承诺处理。
文件名: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.static('findCustomerByAddress',
function (address) {
return this.find({ address: address });
})
const Customer =
connectionObject.model('Customer', customerSchema);
Customer.findCustomerByAddress('Indore').then(result => {
console.log(result);
}).catch(error => console.log(error));
运行程序的步骤:要运行应用程序,请从项目的根目录执行以下命令:
node app.js
输出:
[ { _id: new ObjectId("639ede899fdf57759087a655"), name: 'Chintu', address: 'Indore', orderNumber: 6, __v: 0 } ]
示例 2:下面的示例说明了 Mongoose Schema 的函数static()方法。在此示例中,我们定义了名为的静态方法得到所有,我们从数据库中获取所有文档,并使用匿名异步函数处理返回值。
文件名: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.static('getAll', function () {
return this.find({});
})
const Customer =
connectionObject.model('Customer', customerSchema);
(async () => {
const result = await Customer.getAll();
console.log(result);
})();
运行程序的步骤:要运行应用程序,请从项目的根目录执行以下命令:
node app.js
输出:
[ { _id: new ObjectId("639ede899fdf57759087a655"), name: 'Chintu', address: 'Indore', orderNumber: 6, __v: 0 }, { _id: new ObjectId("639ede899fdf57759087a653"), name: 'Aditya', address: 'Mumbai', orderNumber: 2, __v: 0 }, { _id: new ObjectId("639ede899fdf57759087a654"), name: 'Bhavesh', address: 'Delhi', orderNumber: 5, __v: 0 } ]
参考:https://mongoosejs.com/docs/api/schema.html#schema_Schema-static
相关用法
- Mongoose Schema.prototype.virtual()用法及代码示例
- Mongoose Schema.prototype.plugin()用法及代码示例
- 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.static() API。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。