1.7.18. 错误丢弃 (向上)
示例: 获取所有错误
{% for error in form.errors %} attribute: {{ error.attribute }} ... {% endfor %}
{% for error in form.errors %}
attribute: {{ error.attribute }}
...
{% endfor %}
1.7.18.1. 方法 复制链接链接已复制到粘贴板!
复制链接链接已复制到粘贴板!
1.7.18.1.1. 空? 复制链接链接已复制到粘贴板!
复制链接链接已复制到粘贴板!
如果没有错误,返回 true
{% if form.errors == empty %} Congratulations! You have no errors! {% endif %}
{% if form.errors == empty %}
Congratulations! You have no errors!
{% endif %}
1.7.18.1.2. 存在? 复制链接链接已复制到粘贴板!
复制链接链接已复制到粘贴板!
如果有错误,返回 true
{% if form.errors == present %} Sorry, there were some errors. {% endif %}
{% if form.errors == present %}
Sorry, there were some errors.
{% endif %}