通过使用ajv,如何引用foo以验证bar具有相同的值?

var Ajv = require('ajv');
var ajv = new Ajv({allErrors: true});

var schema = {
  'properties': {
    'foo': { 'type': 'string', 'minLength': 3 },
    'bar': { 'type': 'string', ###HERE### },
  }
};

data = {
  'foo': 'abc',
  'bar': 'ab',
};

ajv.validate(schema, data);   // <-- should return false, foo !== bar


我尝试使用(具有类似的变化):

...
'bar': { 'type': 'string', 'format': { '$data': 'foo' } },
...


但这没有用。

最佳答案

您可以:

var ajv = new Ajv({allErrors: true, $data: true}); // for version >=5.0.0

var schema = {
  properties: {
    foo: { type: 'string', minLength: 3 },
    bar: { const: { $data: '1/foo' } },
  }
};

关于node.js - AJV:检查一个属性是否等于另一个属性,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43459846/

10-14 02:52