将Django Queryset转换为Dict

时间:2018-10-11 21:52:54

标签: python django django-templates django-queryset

我正在尝试将以下查询集转换为字典,然后可以通过html模板进行解析。

team | season | type | scope | rank | value
a    | 2018   | reg  | l5    | 5    | 0.118
a    | 2018   | reg  | l10   | 6    | 1.251
b    | 2018   | reg  | l5    | 20   | 0.005
b    | 2018   | reg  | l10   | 15   | 3.058
c    | 2018   | reg  | l5    | 35   | 0.785

我遇到的问题是我需要所有行,而无法过滤到所需的1个实例。我需要能够将值放置在模板中的特定位置。

我想将查询集转换成字典,这时我可以参考:team [a] .season [2018] .type [reg] .scope [l5]。排名 and team [a] .season [2018] .type [reg] .scope [l5]。。但是我不知道该怎么做。

任何帮助将不胜感激!

0 个答案:

没有答案