所以我有一个 python 字典,存储大小和每个大小的数量,标题为final_list。然后我使用将其传递给模板"sizes": final_list。在 html 模板中,我试图创建一个包含所有尺寸的下拉选择,并且仅显示可用的尺寸,或者数量不等于 0 的尺寸。问题是,它似乎不是接受字典或其他东西,因为下拉列表显示为空。以下是我的代码,任何帮助将不胜感激。Views.py我从名为“Size”的模型获取尺寸信息,然后检查是否有 0 个该尺寸的对象。然后我创建的字典只包含实际可用的大小。from django.template.defaulttags import register@register.filterdef get_item(dictionary, key): return dictionary.get(key)def product(request, code): sizes = Size.objects.get(code=code) all_size = ['small', 'medium', 'large', 'XL'] final_list = {} for size in all_size: if getattr(sizes, size) == 0: pass else: final_list[size] = getattr(sizes, size) return render(request, "website/listing.html", { "sizes": final_list })HTML(网站/listing.html)<form method="POST"> <select name="sizes" style="width: 90px; height: 20px;"> {% csrf_token %} {% for size in sizes %} {% if final_list|get_item:size != 0 %} <option>{{size}}</option> {% endif %} {% endfor %} </select></form>
1 回答
qq_笑_17
TA贡献1818条经验 获得超7个赞
您没有将命名的上下文变量传递final_list给模板。你应该改用{% if sizes|get_item ...。
话虽这么说,这段代码可以简化为:
{% for size, value in sizes.items %}
{% if value %}
<option>{{ size }}</option>
{% endif %}
{% endfor %}
这样您也不必使用自定义过滤器get_item。
添加回答
举报
0/150
提交
取消