Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
リストのリストがあります
list = [[1,2,3],[4,5,6],[7,8,9]]
テンプレートの各リストから 2 番目の値を表示するにはどうすればよいですか? 2、5、8?
<div> <ul class="list-group"> {% for item in list %} {{ item[1] }}, {% endfor %} </ul> </div>
リスト項目にアクセスするには、ドット表記を使用する必要があります。
<div> <ul class="list-group"> {% for item in list %} {{ item.1 }}, {% endfor %} </ul> </div>