gpt4 book ai didi

python - 如何从 django templatetag 访问 python 列表?

转载 作者:行者123 更新时间:2023-12-01 06:17:59 26 4
gpt4 key购买 nike

我创建了一个模板标签,将 yaml 文档加载到 python 列表中。在我的模板中,我有 {% get_content_set %},这会转储原始列表数据。我想要做的是类似

{% for items in get_content_list %} 
<h2>{{items.title}}</h2>
{% endfor %}`

最佳答案

如果列表位于Python变量X中,则将其添加到模板上下文context['X'] = X然后就可以了

{% for items in X %}
{{ items.title }}
{% endfor %}

模板标记旨在呈现输出,因此不会提供可迭代列表供您使用。但你不需要它,因为正常的上下文 + for 循环就可以了。

关于python - 如何从 django templatetag 访问 python 列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2157665/

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