📜  jinja2 迭代字典 - Html 代码示例

📅  最后修改于: 2022-03-11 14:53:19.281000             🧑  作者: Mango

代码示例2
{% for dict_item in parent_list %}
   {% for key, value in dict_item.items() %}
      

Key: {{key}}

Value: {{value}}

{% endfor %} {% endfor %}