Django: How to display Validation errors not specific to a field?

烈酒焚心 提交于 2019-12-06 20:37:39

问题


I have errors raised in the form's clean method (not tied to a field).

How do I display them in the template?

I tried {{ forms.errors }} and {{ form.non_field_errors }} but neither worked.


回答1:


According to the docs, they go in a special field (__all__) and should be accessed via the non_field_errors() method. At a guess, I'd say that method returns a sequence.



来源:https://stackoverflow.com/questions/1883469/django-how-to-display-validation-errors-not-specific-to-a-field

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!