当前位置: 首页>>代码示例>>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;未经允许,请勿转载。