我想使用try,除非在djagno模板中有任何方法可以使用它
我想检查考勤表是否有数据。如果没有,它必须显示错误文本
{% try %}
{% for attendances in attendance %}
....
{% endfor %}
{% except %}
<h1>Error Attendance table has no data.</h1>
比起try-catch,你可以使用Django内置的for..empty模板标签。
{% for attendances in attendance %}
....
{% empty %}
<h1>Error Attendance table has no data.</h1>
{% endfor %}
如果表为空,则显示错误消息。