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


Python Page.get_children方法代碼示例

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


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

示例1: get_navigation_object_from_page

# 需要導入模塊: from wagtail.core.models import Page [as 別名]
# 或者: from wagtail.core.models.Page import get_children [as 別名]
def get_navigation_object_from_page(page: Page, current_page_id: int) -> dict:
    page_object = {
        "text": str(page.title),
        "nodes": [],
        "href": page.get_url(),
        "state": {}
    }
    if isinstance(page.specific, PageWithSidebar) or isinstance(page.specific, LessonPage) or isinstance(page.specific,
                                                                                                         ArticlePage):
        menu_title = page.specific.menu_title
        if not isinstance(menu_title, str):
            menu_title = menu_title.decode()
        if menu_title != '':
            page_object["text"] = menu_title
        if not page.specific.is_selectable:
            page_object["selectable"] = False
    if page.id == current_page_id:
        page_object["state"] = {
            "selected": True
        }
        page_object["selectable"] = False
    for child in page.get_children():
        if child.show_in_menus:
            page_object["nodes"].append(get_navigation_object_from_page(child, current_page_id))
    if len(page_object["nodes"]) == 0:
        page_object.pop('nodes', None)
    return page_object
開發者ID:5CORNERS,項目名稱:www.le-francais.ru,代碼行數:29,代碼來源:views.py


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