gpt4 book ai didi

python - jinja2 遍历元组列表

转载 作者:行者123 更新时间:2023-11-28 21:45:22 28 4
gpt4 key购买 nike

我有一个名为 items 的元组列表:

[ (1,2), (3,4), (5,6), (7,8) ]

我以为我可以通过使用进行迭代,但它不起作用:

# Code
output = template.render( items )

# Template
{% for item in items %}
{{ item[0] }};
{{ item[1] }};
{% endfor %}

有什么建议吗?

最佳答案

来自documentation :

render([context])

This method accepts the same arguments as the dictconstructor: A dict, a dict subclass or some keyword arguments. If noarguments are given the context will be empty.

from jinja2 import Environment

TEMPLATE = """
{% for item in items %}
{{ item[0] }};
{{ item[1] }};
{% endfor %}
"""

template = Environment().from_string(TEMPLATE)

items = [(1,2), (3,4), (5,6), (7,8)]

print(template.render(items=items))

在解析模板时,jinja2 将寻找一个名为“items”的键,但在您的情况下,没有,您必须明确指定它。

关于python - jinja2 遍历元组列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39523485/

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