gpt4 book ai didi

python - 在 Flask 应用程序下使用 jinja2 获取列表元素

转载 作者:太空宇宙 更新时间:2023-11-03 12:28:22 24 4
gpt4 key购买 nike

我有一个长度为 10 的列表 list[a][b]。我想从 list[0][b] 打印到 list[10][b] 并在 jinja2 中使用它模板。

{% for i in test %}
<p> {{test[i][0]}} </p>
{% endfor %}

抛出错误:

UndefinedError: list object has no element 

最佳答案

当你迭代它时,你实际上是从列表中取出元素,而不是索引值:

{% for row in test %}
{# Note that we subscript `row` directly,
(rather than attempting to index `test` with `row`) #}
<p>{{ row[0] }}</p>
{% endfor %}

关于python - 在 Flask 应用程序下使用 jinja2 获取列表元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17562940/

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