我正在尝试在模板中打印以下结构(伪代码)
class Car():
field color
field size
其中Column1和Column2表示同一个表的不同列(对象的字段),值是此列可能具有的值。
如何将其打印到模板?
red orange blue
small 123 4 45
regular 34 64 54
large 64 34 23
我知道如何构建表,但是django查询的概念和作为SQL形成一些我不熟悉的对象。
答案 0 :(得分:2)
如果我理解这个问题,我认为你可以通过方法用django小组来做到这一点
>>>>from your_app import models
>>>>from django.db.models import Count, Avg
>>>>combinations_dict_list = models.Car.objects.values('color', 'size').order_by().annotate(Count('color'), Count('size'))
>>>>combinations_dict_list
[{'color__count': 1, 'size__count': 1, 'color': 'red', 'size': 'small'},
{'color__count': 2, 'size__count': 2, 'color': 'red', 'size': 'regular'},
{'color__count': 3 'size__count': 3, 'color': 'red', 'size': 'large'},
...
]
您可以获取包含列值组合计数的字典。
要渲染结果,您可以创建一个带有颜色大小结构的dict,以便在模板中轻松迭代它
combinations_dict = {}
for comb in combinations_dict_list:
if not combinations_dict.get(comb['color'], {}):
combinations_dict[comb['color']] = {}
if not combinations_dict[comb['color']].get(comb['size'], {}):
combinations_dict[comb['color']][comb['size']] = {}
combinations_dict[comb['color']][comb['size']] = comb['color__count']
colors = combinations_dict.keys()
sizes = combinations_dict[colors[0]].keys()
模板代码
<table>
<tr><td>/td>
{% for color size in colors %}
<td class="color_header">{{ combinations_dict.color.size}}</td>
{% endfor %}
</tr>
{% for size in sizes %}
<tr>
<td class="size_header">{{ size }}</td>
{% for color, sizes in combinations_dict.items %}
{% for curr_size, val in sizes.items %}
{% if size == curr_size %}
<td class="value">{{ val}}</td>
{% endif %}
{% endfor %}
{% endfor %}
</tr>
{% endfor %}
</table>
答案 1 :(得分:0)
没有直接的数据库方式,你应该做的是:
1.按尺寸,颜色选择计数(1)汽车组的数量,尺寸,颜色
将返回类似的东西
计数大小颜色
2小红郎
4小橙子
2.按大小/颜色渲染结果