forked from Melrose-1996/vue3-json-schema-form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest1.js
91 lines (85 loc) · 1.75 KB
/
test1.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
// Node.js require:
const Ajv = require('ajv').default
const addFormats = require('ajv-formats')
const localize = require('ajv-i18n')
const addErrors = require('ajv-errors')
const ajv = new Ajv({
allErrors: true,
}) // options can be passed, e.g. {allErrors: true}
addFormats(ajv)
addErrors(ajv)
/*ajv.addFormat('test', (data) => {
return data === 'Hello World'
})*/
ajv.addKeyword({
keyword: 'test',
/* validate: function fun (schema, data) {
fun.errors = [
{
keyword: 'test',
dataPath: '/name',
schemaPath: '#/properties/name/test',
params: {},
message: 'hello error message'
}
]
return false
},*/
/* compile (schema, parentSchema) {
console.log(schema, parentSchema)
return () => false
},*/
/* metaSchema: {
type:'string'
},*/
macro() {
return {
minLength: 10,
}
},
})
const schema = {
type: 'object',
properties: {
name: {
type: 'string',
test: '123456',
errorMessage: {
type: '必须是字符串',
test: 'test自定义验证错误',
},
// format: 'test',
// minLength:10
},
age: {
type: 'number',
},
pets: {
type: 'array',
items: [
{
type: 'string',
},
{
type: 'number',
},
],
minItems: 2,
},
isWorker: {
type: 'boolean',
},
},
required: ['age'],
}
const validate = ajv.compile(schema)
const valid = validate({
name: 'Hello world',
age: 20,
pets: ['1', 2],
isWorker: true,
})
if (!valid) {
localize.zh(validate.errors)
console.log(validate.errors)
}