我的表中有一个列(基于类,而不是模型类)是python Dict对象,我希望该列中的单元格显示为每个dict条目一行。
我要显示的班级:
class MegaDatapoint:
def __init__(self, id=None,
name=None,
display_name=None,
description=None,
enum_dict=None,
):
self.id = id
self.name = name
self.display_name = display_name
self.description = description
self.enum_dict = enum_dict
在我的tables.py中,我有以下内容:
class DictColumn(tables.Column):
def render(self, value):
if type(value) is dict:
v = ""
for d in value:
v += f"{d}->{value[d]}\n\r"
else:
v = "--"
return v
class MegaTable(tables.Table):
name = tables.Column()
display_name = tables.Column()
description = tables.Column()
enum_dict = DictColumn(attrs={'td': {' white-space':'pre-wrap'} })
模板“ megadatapoint_table2.html”为:
{% extends "base.html" %}
{% load render_table from django_tables2 %}
{% block title %}{{ block.super }}Projects{% endblock %}
{% block container %}
<div>
<title>List of Datapoints</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
</div>
<div>
{% render_table table %}
</div>
{% endblock %}
最后是视图:
class MegadatapointTableView(SingleTableView):
table_class = MegaDatapointTable
template_name = 'megadatapoint_table2.html'
def get_queryset(self):
"""
Return the product features for this product
"""
self.enums = Enumeration.objects.all().order_by('enumeration_group')
self.enum_values_dict = {}
for enum in self.enums:
if enum.enumeration_group.id not in self.enum_values_dict:
self.enum_values_dict[enum.enumeration_group.id] = {}
self.enum_values_dict[enum.enumeration_group.id][enum.ordinal] = enum.name
self.m_dp_list = []
for dp in Datapoint.objects.all():
dp_enum_dict = None
if dp.enumeration_group is not None:
if dp.enumeration_group.id in self.enum_values:
dp_enum_dict = self.enum_values_dict[dp.enumeration_group.id]
else:
dp_enum = f"opps, no enumeration in DB->{dp.enumeration_group.id}"
else:
dp_enum = ""
mdp = MegaDatapoint(id=dp.id,
name=dp.name,
display_name=dp.display_name,
description=dp.description,
enum_dict=dp_enum_dict,
)
self.m_dp_list.append(mdp)
return self.m_dp_list
列attrs显示在HTML中,但不进行渲染以获取多行。
任何线索或帮助将不胜感激...
答案 0 :(得分:0)
找到一个解决方案,放弃自定义列,使用带有“ {{record.enum | linebreaksbr}}”的“ TemplateColumn”作为模板。在我看来,请使用字符串而不是字典,在字典条目之间使用“ \ n”。
因此视图中的新枚举是:
self.enums = Enumeration.objects.all().order_by('enumeration_group','ordinal')
self.enum_values = {}
for enum in self.enums:
if enum.enumeration_group.id in self.enum_values:
self.enum_values[enum.enumeration_group.id] += f"\n{enum.ordinal}->{enum.name }"
else:
self.enum_values[enum.enumeration_group.id] = f"{enum.ordinal}->{enum.name }"
新表是:
class MegaDatapointTable(tables.Table):
name = tables.Column(linkify=("fele:datapoints_detail", {"pk": tables.A("id")}))
display_name = tables.Column()
description = tables.Column()
enum_group = tables.TemplateColumn("{{record.enum_group|linebreaksbr }}")
我认为这也比较干净。
答案 1 :(得分:0)
第一种方法应该可行,但是您应该使用
DictColumn(attrs={'td': {'style': 'white-space:pre-wrap;'} })
而不是
DictColumn(attrs={'td': {'white-space': 'pre-wrap'} })