{'provide a full refund of any money paid ': ['the ', 'dith ', 'with ', 'ande ', 'cor '], 'copyright laws of the place where you ar': ['e ', 'init ', ' or ', 'ate ', 's '], 'person or entity that provided you with ': ['the ', 'of ', 'ande ', ' or ', 'project '], 'michael s. hart is the originator of the': [' the ', '\n ', 's ', 'r ', ', ']}
私のビューに渡されたこのdjango変数をhtmlファイルに解析するにはどうすればよいですか。私は、各キーの値は djangoのテンプレートで辞書を繰り返し処理する
return render(request, 'notebook/instant_search.html', output)
私が出した私のhtmlファイルでこれを試してみました
を示しているテーブルの形式でHTMLファイル内に表示されるように、このデータを作りたい は私が通過しています変数である私ビューも{% for key, value in output %}
{{ key }} <br>
{% for key2 in value %}
{{ key2 }} <br>
{% endfor %}
{% endfor %}
この:
{% for k in context %}
{{ k }}
{% endfor %}
しかし、私は、任意の出力を取得しておりません。テンプレートで直接辞書を反復処理することができます
これまでに試したことのコードサンプルをご提供ください。そうすれば、私たちはより効果的にあなたを助けることができます。 – Ivonet
完了。今すぐチェック –