gpt4 book ai didi

python - Django 无效 block 标记 : 'endfor'

转载 作者:太空宇宙 更新时间:2023-11-03 15:03:31 25 4
gpt4 key购买 nike

我写了这些 for 循环,但出现错误:Django 无效 block 标记:'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 %}

关于python - Django 无效 block 标记 : 'endfor' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35389997/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com