我正在使用Flask将网站连接到SQLite3中的数据库。尝试迭代表结果,我使用以下代码,它基于Flaskr教程(http://flask.pocoo.org/docs/0.10/tutorial/templates/):
`{% extends "layout.html" %}
{% block body %}
<ul class="students">
{% for student in students %}
<li>{{ student.ID }},{{ student.lastName }},{{ student.firstName }}</li>
{% else %}
<li> No students yet</li>
{% endfor % }
</ul>`
但我收到的错误是:
File "C:\sam\IS13\templates\show_tests.html", line 8, in template
{% endfor % }
TemplateSyntaxError: expected token 'end of statement block', got '%'
这不是在此设置中关闭for循环的正确方法吗?