编程语言
首页 > 编程语言> > python-Django无效块标记:“ endfor”

python-Django无效块标记:“ endfor”

作者:互联网

我写了这些for循环,但出现错误:Django Invalid Block Tag:’endfor’

{ % for post in post_list %}
    <div>
    {{ post.title }}
    {{ post.created_at }}
    {{ post.photo }}
    {{ post.content }}
    </div>
{% endfor %}

解决方法:

之所以会出现此错误,是因为{和%之间的for标记开始之间有一个空格.

更改此值-{%,使其看起来像这样-{%,即删除{和%之间的空格:

{% for post in post_list %}
    ...
{% endfor %}

标签:django-templates,python,django
来源: https://codeday.me/bug/20191027/1943782.html