以下JSON对象有效:
{
"foo": "bar",
"pattern": "^(\/?[-a-zA-Z0-9_.]+)+$"
}
这个不:
{
"foo": "bar",
"pattern": "^(\/?[-a-zA-Z0-9_.]+)+\.jpg$"
}
这是转发的点(\.
),但我不明白为什么这不应该是有效的JSON。我需要在真正的JSON模式中包含这些模式。正则表达式要复杂得多,并且没有办法错过重点,特别是点。
BTW,在字符类中转义超量,例如在[a-z\-]
中也会中断验证。
我该如何解决?
编辑:我使用了http://jsonlint.com/,http://jsonvalidator.mytechlabs.com/和几个节点库。
答案 0 :(得分:7)
你需要在这里双重逃脱。斜杠是json中的转义字符,所以你不能逃避点(就像它看到的那样),而你需要逃避反斜杠,这样你的正则表达式就像它应该出现\.
一样(json期待一个逃脱后的保留字符,即引用或其他斜线或其他东西)。
// passes validation
{
"foo": "bar",
"pattern": "^(/?[-a-zA-Z0-9_.]+)+\\.jpg$"
}
答案 1 :(得分:0)
您可以使用 ajv-keywords 中的正则表达式
import Ajv from 'ajv';
import AjvKeywords from 'ajv-keywords';
// ajv-errors needed for errorMessage
import AjvErrors from 'ajv-errors';
const ajv = new Ajv.default({ allErrors: true });
AjvKeywords(ajv, "regexp");
AjvErrors(ajv);
// modification of regex by requiring Z https://www.regextester.com/97766
const ISO8601UTCRegex = /^(-?(?:[1-9][0-9]*)?[0-9]{4})-(1[0-2]|0[1-9])-(3[01]|0[1-9]|[12][0-9])T(2[0-3]|[01][0-9]):([0-5][0-9]):([0-5][0-9])(.[0-9]+)?Z$/;
const typeISO8601UTC = {
"type": "string",
"regexp": ISO8601UTCRegex.toString(),
"errorMessage": "must be string of format 1970-01-01T00:00:00Z. Got ${0}",
};
const schema = {
type: "object",
properties: {
foo: { type: "number", minimum: 0 },
timestamp: typeISO8601UTC,
},
required: ["foo", "timestamp"],
additionalProperties: false,
};
const validate = ajv.compile(schema);
const data = { foo: 1, timestamp: "2020-01-11T20:28:00" }
if (validate(data)) {
console.log(JSON.stringify(data, null, 2));
} else {
console.log(JSON.stringify(validate.errors, null, 2));
}