Mongoose 是针对 node.js 环境的 MongoDB 对象建模和处理。
Mongoose SchemaType validate 是一种 SchemaType 方法,它允许我们在将文档路径保存到数据库之前验证它们。让我们通过一些例子来更多地了解这一点。
创建节点应用程序并安装 Mongoose:
步骤1:使用以下命令创建节点应用程序:
mkdir folder_name cd folder_name npm init -y touch main.js
步骤 2:创建 ReactJS 应用程序后,使用以下命令安装所需的模块:
npm install mongoose
项目结构: 它将如下所示。
示例 1:在此示例中,我们将在特定模式级别创建一个验证函数,该函数将允许我们验证创建的新模式实例的名称是否与值 “John Doe” 匹配。
文件名: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'));
function validator(val) {
return val === 'John Doe';
}
const personSchema = new mongoose.Schema({
name: {
type: String,
validate: validator
},
});
const Person = mongoose.model('Person', personSchema);
const person1 = new Person({ name: 'John' });
(async function () {
await person1.validate();
})()
运行应用程序的步骤:从项目的根目录使用以下命令运行应用程序:
node main.js
输出:
示例 2:在此示例中,我们将在特定模式级别创建一个验证函数,该函数将允许我们验证创建的新模式实例的名称是否与值 “John Doe” 匹配,这次我们将添加自定义消息以登录安慰。
文件名: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'));
function validator (val) {
return val === 'John Doe';
}
const custom = [validator, 'Uh oh,
{PATH} does not equal "John Doe".']
const personSchema = new mongoose.Schema({
name: {
type: String,
validate: custom
},
});
const Person = mongoose.model('Person', personSchema);
const person1 = new Person({ name: 'John' });
(async function () {
await person1.validate();
})()
运行应用程序的步骤:从项目的根目录使用以下命令运行应用程序:
node main.js
输出:
参考: https://mongoosejs.com/docs/api/schematype.html#schematype_SchemaType-validate
相关用法
- Mongoose SchemaType.prototype.ref()用法及代码示例
- Mongoose SchemaType.prototype.default()用法及代码示例
- Mongoose SchemaType.prototype.immutable()用法及代码示例
- Mongoose SchemaType.prototype.unique()用法及代码示例
- Mongoose SchemaType.prototype.get()用法及代码示例
- Mongoose SchemaType.prototype.text()用法及代码示例
- Mongoose SchemaType.prototype.set()用法及代码示例
- Mongoose SchemaType.prototype.required()用法及代码示例
- Mongoose SchemaType.prototype.select()用法及代码示例
- Mongoose SchemaType.prototype.transform()用法及代码示例
- Mongoose SchemaType.prototype.index()用法及代码示例
- Mongoose Schema Connection.prototype.asPromise()用法及代码示例
- Mongoose Schema Connection.prototype.dropCollection()用法及代码示例
- Mongoose Schema.prototype.virtual()用法及代码示例
- Mongoose Schema Connection.prototype.set()用法及代码示例
- Mongoose Schema Connection.prototype.dropDatabase()用法及代码示例
- Mongoose Schema.prototype.plugin()用法及代码示例
- Mongoose Schema Connection.prototype.close()用法及代码示例
- Mongoose Schema.prototype.static()用法及代码示例
- Mongoose Schema Connection.prototype.useDb()用法及代码示例
- Mongoose Schema.prototype.pre()用法及代码示例
- Mongoose countDocuments()用法及代码示例
- Mongoose deleteMany()用法及代码示例
- Mongoose deleteOne()用法及代码示例
- Mongoose estimatedDocumentCount()用法及代码示例
注:本文由纯净天空筛选整理自dishebhbhayana大神的英文原创作品 Mongoose SchemaType.prototype.validate() API。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。