如何自定义Cerberus的错误消息?

时间:2017-12-09 16:07:57

标签: python cerberus

我想本地化Cerberus返回的错误消息,例如我想实现以下目标:

>>> validator.schema = {'animal': {'forbidden': ['Einhorn']}}
>>> validator({'animal': 'Einhorn'})
False
>>> validator.errors
{'animal': ['VERBOTEN!']}  # instead of 'unallowed value Einhorn'

1 个答案:

答案 0 :(得分:4)

您可以简单地从BasicErrorhandler模块继承默认错误处理程序cerberus.errors,并根据需要调整消息模板:

>>> class CustomErrorHandler(errors.BasicErrorHandler):
...     messages = errors.BasicErrorHandler.messages.copy()
...     messages[errors.FORBIDDEN_VALUE.code] = 'VERBOTEN!'
...     
>>> validator = Validator(schema, error_handler=CustomErrorHandler)
>>> validator({'animal': 'Einhorn'})
False
>>> validator.errors
{'animal': ['VERBOTEN!']}

查看source code可用的错误代码和模板变量。