如何在Django模板的词典中遍历词典?


128

我的字典看起来像这样(字典中的字典):

{'0': {
    'chosen_unit': <Unit: Kg>,
    'cost': Decimal('10.0000'),
    'unit__name_abbrev': u'G',
    'supplier__supplier': u"Steve's Meat Locker",
    'price': Decimal('5.00'),
    'supplier__address': u'No\r\naddress here',
    'chosen_unit_amount': u'2',
    'city__name': u'Joburg, Central',
    'supplier__phone_number': u'02299944444',
    'supplier__website': None,
    'supplier__price_list': u'',
    'supplier__email': u'ss.sss@ssssss.com',
    'unit__name': u'Gram',
    'name': u'Rump Bone',
}}

现在,我只是想在模板上显示信息,但是我很挣扎。我的模板代码如下:

{% if landing_dict.ingredients %}
  <hr>
  {% for ingredient in landing_dict.ingredients %}
    {{ ingredient }}
  {% endfor %}
  <a href="/">Print {{ landing_dict.recipe_name }}</a>
{% else %}
  Please search for an ingredient below
{% endif %}

它只是在模板上显示“ 0”?

我也尝试过:

{% for ingredient in landing_dict.ingredients %}
  {{ ingredient.cost }}
{% endfor %}

这甚至不显示结果。

我认为也许我需要更深一层地迭代,所以尝试了一下:

{% if landing_dict.ingredients %}
  <hr>
  {% for ingredient in landing_dict.ingredients %}
    {% for field in ingredient %}
      {{ field }}
    {% endfor %}
  {% endfor %}
  <a href="/">Print {{ landing_dict.recipe_name }}</a>
{% else %}
  Please search for an ingredient below
{% endif %}

但这不会显示任何内容。

我究竟做错了什么?

Answers:


258

可以说您的数据是-

data = {'a': [ [1, 2] ], 'b': [ [3, 4] ],'c':[ [5,6]] }

您可以使用该data.items()方法来获取字典元素。请注意,在Django模板中,我们不放置()。另外提到的一些用户values[0]不起作用,如果是这种情况,请尝试values.items

<table>
    <tr>
        <td>a</td>
        <td>b</td>
        <td>c</td>
    </tr>

    {% for key, values in data.items %}
    <tr>
        <td>{{key}}</td>
        {% for v in values[0] %}
        <td>{{v}}</td>
        {% endfor %}
    </tr>
    {% endfor %}
</table>

相当确定您可以将此逻辑扩展到您的特定字典。


要以排序的顺序遍历dict键 -首先,我们在python中排序,然后在django模板中进行迭代和渲染。

return render_to_response('some_page.html', {'data': sorted(data.items())})

在模板文件中:

{% for key, value in data %}
    <tr>
        <td> Key: {{ key }} </td> 
        <td> Value: {{ value }} </td>
    </tr>
{% endfor %}

2
感谢您的回答。我的菜谱名称高了一级,但没有显示该词典的级别。谢谢您的回答!我不能用,values[0]我不得不values.items
达伦

凉!很高兴分享我所知道的。代码是徒手输入的,因此不可避免会出现一些错误。
Srikar Appalaraju 2011年

1
感谢您的提及.items。该文档https://docs.djangoproject.com/en/1.4/topics/templates/提供了一个无效的示例,但没有一个有效的示例。 {% for k,v in dict %}给出奇怪的结果-k是每个键的第一个字符,v是空白,而{% for k in dict %}返回完整键,但无法检索值(因为dict.k将k当作文字字符)。
戴夫

2
赞成:-)。对于以后的读者来说,标签和过滤器参考https://docs.djangoproject.com/en/1.8/ref/templates/builtins/#for文档以及用于格式化列表的forloop变量。
戴夫2015年

1
values.items+1
Kevin_TA

3

这个答案对我没有用,但是我自己找到了答案。但是,没有人发布我的问题。我懒得先问再回答,所以就把它放在这里。

这用于以下查询:

data = Leaderboard.objects.filter(id=custom_user.id).values(
    'value1',
    'value2',
    'value3')

在模板中:

{% for dictionary in data %}
  {% for key, value in dictionary.items %}
    <p>{{ key }} : {{ value }}</p>
  {% endfor %}
{% endfor %}

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.