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


Python edit.FormView方法代碼示例

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


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

示例1: get_context_data

# 需要導入模塊: from django.views.generic import edit [as 別名]
# 或者: from django.views.generic.edit import FormView [as 別名]
def get_context_data(self, **kwargs):
        # IMPORTANT! this super call cannot be reduced to super()
        # TODO: add a test that fails with super()
        context = super(edit_views.FormView, self).get_context_data(**kwargs)
        current_site = self.request.site
        context.update(
            {
                self.redirect_field_name: self.get_redirect_url(),
                "site": current_site,
                "site_name": current_site.name,
            }
        )
        if self.extra_context is not None:
            context.update(self.extra_context)
        return context 
開發者ID:project-callisto,項目名稱:callisto-core,代碼行數:17,代碼來源:view_partials.py

示例2: get_form_class

# 需要導入模塊: from django.views.generic import edit [as 別名]
# 或者: from django.views.generic.edit import FormView [as 別名]
def get_form_class(self):
        # @@@ django: this is a workaround to not having a dedicated method
        # to initialize self with a request in a known good state (of course
        # this only works with a FormView)
        self.primary_email_address = self.request.user.email
        return super(SettingsView, self).get_form_class() 
開發者ID:madre,項目名稱:devops,代碼行數:8,代碼來源:views.py


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