Django 无效块标签:'endfor'

Shu*_* Wu 5 python django django-templates

我写了这些 for 循环,但我得到了错误:Django Invalid Block Tag: 'endfor'

{ % for post in post_list %}
    <div>
    {{ post.title }}
    {{ post.created_at }}
    {{ post.photo }}
    {{ post.content }}
    </div>
{% endfor %}
Run Code Online (Sandbox Code Playgroud)

xyr*_*res 5

您收到该错误是因为标签开始的位置{%位置之间有一个空格for

更改此-{ %看起来像这样- {%删除之间的空间{%

{% for post in post_list %}
    ...
{% endfor %}
Run Code Online (Sandbox Code Playgroud)