2 回答

TA貢獻(xiàn)1828條經(jīng)驗(yàn) 獲得超4個(gè)贊
您可以使用?模板標(biāo)記輕松地在模板中迭代?dict
。for
{% for key, values in alltrasfData.items %}
? ? {% if 'transaction' in key %}
? ? ? ? {% for transaction in values %}
? ? ? ? ? ? <p>feast_year: {{transaction.feast_year}}</p>
? ? ? ? ? ? <p>...</p>
? ? ? ? {% endfor %}
? ? {% elif 'subtotal' in key %}
? ? ? ? # logic for subtotal goes here
? ? ? ? # ...
? ? {% else %}
? ? ? ? ?# logic for grandtotal goes here
? ? ? ? # ...
? ? {% endif %}
{% endfor %}

TA貢獻(xiàn)1796條經(jīng)驗(yàn) 獲得超10個(gè)贊
我認(rèn)為將 alltrasfData
存儲(chǔ)在字典中context
,將其傳遞給 render()
并在 HTML 中使用以下內(nèi)容:< /span>
{% for key,value in alltrasfData %} print(key,value) {% endfor %}
- 2 回答
- 0 關(guān)注
- 201 瀏覽
添加回答
舉報(bào)