在 django 模板中访问字典值
Posted
技术标签:
【中文标题】在 django 模板中访问字典值【英文标题】:Accessing dictionary values in django template 【发布时间】:2014-11-29 10:25:10 【问题描述】:我正在尝试从 Django 模板中的字典访问键值对,但遇到了一些问题。
字典看起来像这样:
datetime.datetime(2014, 10, 31, 0, 0, tzinfo=<UTC>): [<Item: do something1>],
datetime.datetime(2014, 10, 24, 0, 0, tzinfo=<UTC>): [<Item: dosomething2>,<Item: dosomething3>]
Django 模板:
% if item_list %
<ul>
item_list
% for key, value in item_list %
<h3>key</h3>
% for item in value %
<input type="checkbox" value="item.title">item.title<br>
% endfor %
% endfor %
</ul>
% else %
<p>No items are available.</p>
% endif %
Views.py
def index(request):
try:
item_list = sort_items_by_date()
except Item.DoesNotExist:
raise Http404
return render(request, 'index.html', 'item_list':item_list, 'new_item_form':ItemForm())
渲染模板时,字典中的任何项目都不会显示。我在这里查找了其他类似的问题并尝试了他们的解决方案(例如使用 item_list.date),但没有奏效。如果有人能指出我在这里做错了什么,我将不胜感激
【问题讨论】:
如何在上下文中发送字典? 哎呀刚刚添加到帖子中 【参考方案1】:% for key, value in item_list %
遍历字典会产生键。
% for key, value in item_list.iteritems %
【讨论】:
以上是关于在 django 模板中访问字典值的主要内容,如果未能解决你的问题,请参考以下文章