我正在尝试使用 Cerberus 使用本文anyof_schema
中提出的规则来验证包含字符串或字典的列表:
from cerberus import Validator
A = {'type': 'dict',
'schema': {'name': {'type': 'string', 'required': True},
'run': {'type': 'string', 'required': True}}}
B = {'type': 'string', 'empty': False}
schema = {
'some_field': {
'type': 'list',
'anyof_schema': [A, B]
}
}
v = Validator(schema)
challenge = {
'some_field': ['simple string 1', {'name': 'some name', 'run': 'some command'}]
}
print(v.validate(challenge))
print(v.errors)
但验证失败,输出:
False
{'some_field': ['no definitions validate', {'anyof definition 0': [{0: ['must be of dict type']}], 'anyof definition 1': [{1: ['must be of string type']}]}]}
似乎该anyof_schema
规则仅在提供的集合中的所有模式都描述相同的数据类型(例如字典)时才有效。
为什么anyof_schema
规则在我的情况下失败,我该如何解决这个问题?
我正在使用 Python 3.5.3 和 Cerberus 1.3.1