我试过了:
list1 = [{"username": "abhi", "pass": 2087}]
return render_template("file_output.html", list1=list1)
在模板中:
<table border=2>
<tr>
<td>
Key
</td>
<td>
Value
</td>
</tr>
{% for dictionary in list1 %}
{% for key in dictionary %}
<tr>
<td>
<h3>{{ key }}</h3>
</td>
<td>
<h3>{{ dictionary[key] }}</h3>
</td>
</tr>
{% endfor %}
{% endfor %}
</table>
上面的代码将每个元素分成多个字符:
[
{
"
u
s
e
r
...
我在一个简单的Python脚本中测试了上面的嵌套循环,它可以正常工作,但在Jinja模板中却不能。
dict_item.items
改为使用括号),否则它会引发Could not parse the remainder: '()' from 'dict_item.items()'