gpt4 book ai didi

django - 在 Django 模板中构建列表

转载 作者:行者123 更新时间:2023-11-28 19:35:17 25 4
gpt4 key购买 nike

使用这段代码:

{% for o in [1,2,3] %}
<div class="{% cycle 'row1' 'row2' %}">
{% cycle 'row1' 'row2' %}
</div>
{% endfor %}

我收到一个TemplateSyntaxError:

Could not parse the remainder: '[1,2,3]' from '[1,2,3]'

有没有办法在模板中构建列表?

最佳答案

我们可以在 str 对象上使用 split 方法:

页面.html :

{% with '1 2 3' as list %}
{% for i in list.split %}
{{ i }}<br>
{% endfor %}
{% endwith %}

结果:

1
2
3

关于django - 在 Django 模板中构建列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4395230/

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