StreamField 中的 StructBlock 呈现为文本

StructBlock within StreamField is rendered as text

我有一个 StreamField 中有 StrictBlock 的问题:

class DetailsTableBlock(StructBlock):
    title = CharBlock(required=False)
    description = RichTextBlock(required=False)
    table = TableBlock(template="home/blocks/table.html")

class MainStreamBlock(StreamBlock):
    ....
    table = DetailsTableBlock()

当我尝试使用以下方法渲染 table 时出现问题:

{{ child.value.table }}

我得到的是:

{u'data': [[u'test', u'test', u'test'], [u'123', u'asd', u'asd'], [u'123', u'asd', u'asd']], u'first_row_is_table_header': True, u'first_col_is_header': False}

所以问题是如何在 StreamField 中使用 StructBlock 渲染 html?我正在使用 Wagtail 1.7

你应该使用:{{ child.value.bound_blocks.table }}

wagtail documentation 给出了完整的解释,但简而言之:当你循环遍历 StreamField 的内容以输出它时,你有时会得到原始数据值,有时会得到一个BoundBlock 对象,它知道值以及如何将其呈现为 HTML。当您访问 StructBlock 的子值时,您将获得原始值(因为这通常是在 StructBlock 模板中访问的更有用的东西) - 要获得 BoundBlock 对象,您需要从 StructBlock 的bound_blocks 字典代替。