0

最近、Cerberus のバージョンを 1.1 から 1.3.2 にアップグレードしました。しかし、検証エラーが発生します。検証スキーマを見つけてください。

my_schema = 
{
    'email': {
        'type': 'string', 'maxlength': 1000,
        'regex': EMAIL_PATTERN, 'required': True
    },
    'guest': {
        'type': 'boolean', 'required': False,
        'excludes': ['password', 'issue_password_reset']
    },
    'password': {
        'type': 'string', 'minlength': 9, 'required': True,
        'excludes': 'issue_password_reset'
    },
    'prefix': {
        'type': 'string', 'nullable': True,
        'required': False, 'maxlength': 10
    },
    'first_name': {
        'type': 'string', 'nullable': True,
        'required': False, 'maxlength': 50
    },
    'last_name': {
        'type': 'string', 'nullable': True,
        'required': False, 'maxlength': 50
    },
    'phone_number': {
        'type': 'string', 'required': False,
        'nullable': True, 'regex': PHONE_NUMBER_PATTERN
    },
    'birthday': {
        'type': 'string', 'required': True,
        'excludes': 'is_legal_drinking_age'
    },
    'is_legal_drinking_age': {
        'type': 'boolean', 'required': True,
        'excludes': 'birthday'
    },
    'issue_password_reset': {
        'type': 'boolean', 'required': True,
        'excludes': 'password'
    },
}

data = {
        "email": "guest123@email.com",
        "guest": True,
        "birthday": "1975-05-05",
        "prefix": "Ms.",
        "first_name": "Allison",
        "last_name": "Smith",
        "phone_number": "(212) 555-2002"
    }

valid = Validator(default_schema)
resp = valid.validate(data)
print(valid.errors)
print(resp)

Cerberus バージョン 1.3.2 の場合、エラーが発生する

Cerberus バージョン 1.3.2 の場合、エラーが発生する

Cerberus バージョン 1.1 では、検証は正しく機能しています。

ここに画像の説明を入力

助けが見つかることを願っています。

4

1 に答える 1