我有以下JSON文档:
{
"document": {
"section1": {
"item1": "Item1Value",
"item2": "Item2Value"
},
"section2": {
"item1": "Item1Value",
"item2": "Item2Value"
},
"section3": {
"item1": "Item1Value",
"item2": "Item2Value"
}
}
}
我想在我的django模板中显示。这个文档是动态的,所以我想动态显示每个部分。我将解析(通过json.loads())字符串传递给模板。
我尝试过类似的事情:
{% for section in json.document %}
<div class="section">
<h4><a href="#" class="section_toggle"></a> {{ section|title }}:</h4>
<table class="table table-condensed">
{% for field in json.document.section %}
{{ field }} {# <---- THIS should print item1, item2... Instead, its printing "section1" letter by letter etc #}
{% endfor %}
</table>
</div>
{% endfor %}
但它没有正确打印部分的项目。有什么帮助吗?
答案 0 :(得分:2)
您可以将字典传递给模板,然后使用模板中的dict.items
迭代值来访问它。
{% for key1,value1 in json.document.items %}
<div class="section">
<h4><a href="#" class="section_toggle"></a> {{ key1|title }}:</h4>
<table class="table table-condensed">
{% for key2,value2 in value1.items %}
{{ key2 }}
{% endfor %}
</table>
</div>
{% endfor %}
在上面的代码中,它是逐个打印"section1"
,因为您没有迭代section1
键的值,而是迭代section1
字符串本身。如果您需要访问字典中的项目,则需要为键和值使用单独的变量,并使用dict.items
。
例如,下面的代码会打印模板中data
字典的键和值。
{% for key, value in data.items %}
{{ key }}: {{ value }}
{% endfor %}