本文介绍了如何在Django上引发多个ValidationError?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
from rest_framework.exceptions import ValidationError
def to_representation(self, request_data):
raise ValidationError({
'field_name': ["Field not allowed to change"]
})
在上面的示例中如何我抛出多个验证错误?我想将它们作为字典显示在相应的字段中。
In the example above how can I throw multiple validation errors? I want to throw them as dicts to show at the respective fields.
推荐答案
您抛出了一个ValidationError,其中包含多个字段错误:
You throw one ValidationError with multiple fields errors inside:
raise ValidationError({
'field_name_1': ["Field not allowed to change"],
'field_name_2': ["Field not allowed to change"],
})
Django 3.0 +样式应遵循:
Django 3.0+ style should follow docs:
raise ValidationError([
ValidationError(_('Error 1'), code='error1'),
ValidationError(_('Error 2'), code='error2'),
])
这篇关于如何在Django上引发多个ValidationError?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!