目录初始化项目demo运行分解新建index.js文件分析总结初始化项目demo npm init -y 安装 Ajv 版本 7 npm install ajv 安装ajv-
npm init -y
安装 Ajv 版本 7
npm install ajv
// ESM/typescript import
import Ajv from "ajv"
import addFormats from "ajv-formats"
// node.js require:
const Ajv = require("ajv")
const addFormats = require("ajv-formats")
const ajv = new Ajv()
addFormats(ajv)
const Ajv = require("ajv")
const addFormats = require("ajv-formats")
const ajv = new Ajv()
addFormats(ajv)
const schema = {
type: "string",
format: 'email',
minLength: 1,
maxLength: 255,
pattern: '/^[a-zA-Z]/'
};
const validate = ajv.compile(schema)
const data = 'string'
const valid = validate(data)
console.log(valid)
if (!valid) console.log(validate.errors)
打开控制台,运行node index.js。
在这里我们就可以利用vscode自带的调试功能,进行代码分析了。首先,我在19行打了断点,这样我们就可以观察到函数的参数和调用情况了。不会调试的同学可以看看这篇文章 新手向:前端程序员必学基本技能——调试JS代码 调试之后,就可以看到编译之后的回调函数了。如下代码
(function anonymous(self, scope) {
const schema11 = scope.schema[6];
const formats0 = scope.formats[0];
const func2 = scope.func[1];
const pattern0 = scope.pattern[0];
return function validate10(data, {instancePath = "", parentData, parentDataProperty, rootData = data} = {}) {
let vErrors = null;
let errors = 0;
if (errors === 0) {
if (errors === 0) {
if (typeof data === "string") {
if (func2(data) > 255) {
validate10.errors = [{
instancePath,
schemaPath: "#/maxLength",
keyWord: "maxLength",
params: {
limit: 255
},
message: "must NOT have more than 255 characters"
}];
return false;
} else {
if (func2(data) < 1) {
validate10.errors = [{
instancePath,
schemaPath: "#/minLength",
keyword: "minLength",
params: {
limit: 1
},
message: "must NOT have fewer than 1 characters"
}];
return false;
} else {
if (!pattern0.test(data)) {
validate10.errors = [{
instancePath,
schemaPath: "#/pattern",
keyword: "pattern",
params: {
pattern: "/^[a-zA-Z]/"
},
message: "must match pattern "" + "/^[a-zA-Z]/" + """
}];
return false;
} else {
if (!formats0.test(data)) {
validate10.errors = [{
instancePath,
schemaPath: "#/format",
keyword: "format",
params: {
format: "email"
},
message: "must match format "" + "email" + """
}];
return false;
}
}
}
}
} else {
validate10.errors = [{
instancePath,
schemaPath: "#/type",
keyword: "type",
params: {
type: "string"
},
message: "must be string"
}];
return false;
}
}
}
validate10.errors = vErrors;
return errors === 0;
};
});
通过以上文件我们可以看到,ajv对我们定义好的shcma进行编译,编译之后生成了一个回调函数。在回调函数中对,定义好的规则进行判断处理。
首先是对type类型的判断处理,然后是字符串类型的最大长度、最小长度和正则的校验,最后是对format的规则校验。
如果,其中的一项不满足规则时,直接会走到errors里边,把错误信息进行处理输出。
了解Ajv的的判断逻辑,先进行schema的定义,然后compile进行schema的编译、生成回调函数,最后输入data数据进行校验。
在我们定义好schema之后,在string类型中,他会按照先type、字符串最大长度、最小长度、正则判断和format的顺序进行,data的校验。
以上就是Ajv format校验使用示例分析的详细内容,更多关于Ajv format校验的资料请关注编程网其它相关文章!
--结束END--
本文标题: Ajvformat校验使用示例分析
本文链接: https://lsjlt.com/news/170544.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-01-12
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0