Django: How to display Validation errors not speci

2020-08-14 10:26发布

问题:

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.