我们已经使用了相当多的字段级验证,它很棒而且功能强大。但是,有时文档本身只有在评估多个领域时才有效。更改涉及的任何字段都必须触发验证。
我们现在所做的是将验证应用于所涉及的每个字段 - 它在 POST 上多次运行验证。
有没有办法将验证规则应用于文档本身?
例如,假设 some_thing 有两个字段,并且验证会考虑这两个字段。如果其中任何一个发生变化,我们必须针对另一个进行验证。
这有效...
验证器(为清楚起见进行了简化):
def _validate_custom_validation(self, custom_validation, field, value):
if field == "field1":
f1 = value
f2 = self.document.get('field2')
if field == "field2":
f1 = self.document.get('field1')
f2 = value
if custom_validation and not is_validate(f1, f2):
self._error(field, "validation failed...")
然后是架构定义:
DOMAIN = {
some_thing: {
schema: {
field1: {
'type': 'string',
'custom_validation': True
},
field1: {
'type': 'string',
'custom_validation': True
}
}
}
}
但我们想做这样的事情:
验证者
def _validate_custom_validation(self, custom_validation):
f1 = self.document.get('field1')
f2 = self.document.get('field2')
if custom_validation and not is_validate(f1, f2):
self._error(resource, "validation failed...")
然后是架构定义:
DOMAIN = {
some_thing: {
'custom_validation': True,
schema: {
field1: {
'type': 'string'
},
field1: {
'type': 'string'
}
}
}
}
这可能吗?