web-dev-qa-db-ja.com

Djangoテンプレートの辞書で辞書を反復処理する方法は?

私の辞書は次のようになります(辞書内の辞書):

{'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'[email protected]',
    '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 %}

これも結果を表示しません。

私はおそらく1レベル深く反復する必要があると思ったので、これを試しました:

{% 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 %}

しかし、これは何も表示しません。

私は何を間違えていますか?

111
darren

あなたのデータが-

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 %}
220

この答えは私にはうまくいきませんでしたが、自分で答えを見つけました。しかし、誰も私の質問を投稿していません。私はそれを聞いて答えるのが面倒なので、ここに置いてください。

これは次のクエリ用です。

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 %}
2
crappy_hacker