當前位置: 首頁>>代碼示例>>Python>>正文


Python fields.StreamField方法代碼示例

本文整理匯總了Python中wagtail.wagtailcore.fields.StreamField方法的典型用法代碼示例。如果您正苦於以下問題:Python fields.StreamField方法的具體用法?Python fields.StreamField怎麽用?Python fields.StreamField使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在wagtail.wagtailcore.fields的用法示例。


在下文中一共展示了fields.StreamField方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: get_page_blocks

# 需要導入模塊: from wagtail.wagtailcore import fields [as 別名]
# 或者: from wagtail.wagtailcore.fields import StreamField [as 別名]
def get_page_blocks(page):
    blocks = []

    for field in page.specific._meta.fields:
        if not isinstance(field, StreamField):
            continue

        for stream_child in getattr(page.specific, field.name):
            blocks.extend(get_field_blocks(stream_child))

    return sorted(set(map(get_block_name, blocks))) 
開發者ID:cfpb,項目名稱:wagtail-inventory,代碼行數:13,代碼來源:helpers.py

示例2: test_body

# 需要導入模塊: from wagtail.wagtailcore import fields [as 別名]
# 或者: from wagtail.wagtailcore.fields import StreamField [as 別名]
def test_body(self):
        field = CustomContent._meta.get_field('body')
        self.assertModelField(field, StreamField, True, True, None)

    # meta 
開發者ID:AccentDesign,項目名稱:django_wagtail_boilerplate,代碼行數:7,代碼來源:test_snippet_custom_content.py

示例3: test_content

# 需要導入模塊: from wagtail.wagtailcore import fields [as 別名]
# 或者: from wagtail.wagtailcore.fields import StreamField [as 別名]
def test_content(self):
        field = AbstractCard._meta.get_field('content')
        self.assertModelField(field, StreamField, False, False) 
開發者ID:AccentDesign,項目名稱:django_wagtail_boilerplate,代碼行數:5,代碼來源:test_abstract_card.py

示例4: test_content

# 需要導入模塊: from wagtail.wagtailcore import fields [as 別名]
# 或者: from wagtail.wagtailcore.fields import StreamField [as 別名]
def test_content(self):
        field = AbstractSectionItem._meta.get_field('content')
        self.assertModelField(field, StreamField, True, True) 
開發者ID:AccentDesign,項目名稱:django_wagtail_boilerplate,代碼行數:5,代碼來源:test_abstract_section.py

示例5: test_left_content

# 需要導入模塊: from wagtail.wagtailcore import fields [as 別名]
# 或者: from wagtail.wagtailcore.fields import StreamField [as 別名]
def test_left_content(self):
        field = TwoColumn._meta.get_field('left_content')
        self.assertModelField(field, StreamField, False, False, None) 
開發者ID:AccentDesign,項目名稱:django_wagtail_boilerplate,代碼行數:5,代碼來源:test_snippet_two_column.py

示例6: test_right_content

# 需要導入模塊: from wagtail.wagtailcore import fields [as 別名]
# 或者: from wagtail.wagtailcore.fields import StreamField [as 別名]
def test_right_content(self):
        field = TwoColumn._meta.get_field('right_content')
        self.assertModelField(field, StreamField, False, False, None)

    # meta 
開發者ID:AccentDesign,項目名稱:django_wagtail_boilerplate,代碼行數:7,代碼來源:test_snippet_two_column.py


注:本文中的wagtail.wagtailcore.fields.StreamField方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。