Класс FormMixin (Django 1.11)
from django.views.generic.edit import FormMixin
Предоставляет возможность показать и обработать форму в запросе.
Предки (MRO)
- FormMixin
- ContextMixin
Атрибуты
Определено в | |
---|---|
form_class = None
|
FormMixin |
initial = {}
|
FormMixin |
prefix = None
|
FormMixin |
success_url = None
|
FormMixin |
Методы
If the form is invalid, re-render the context data with the data-filled form and errors.
def form_invalid(self, form):
"""
If the form is invalid, re-render the context data with the
data-filled form and errors.
"""
return self.render_to_response(self.get_context_data(form=form))
If the form is valid, redirect to the supplied URL.
def form_valid(self, form):
"""
If the form is valid, redirect to the supplied URL.
"""
return HttpResponseRedirect(self.get_success_url())
FormMixin
Insert the form into the context dict.
def get_context_data(self, **kwargs):
"""
Insert the form into the context dict.
"""
if 'form' not in kwargs:
kwargs['form'] = self.get_form()
return super(FormMixin, self).get_context_data(**kwargs)
ContextMixin
def get_context_data(self, **kwargs):
if 'view' not in kwargs:
kwargs['view'] = self
return kwargs
Returns an instance of the form to be used in this view.
def get_form(self, form_class=None):
"""
Returns an instance of the form to be used in this view.
"""
if form_class is None:
form_class = self.get_form_class()
return form_class(**self.get_form_kwargs())
Returns the form class to use in this view
def get_form_class(self):
"""
Returns the form class to use in this view
"""
return self.form_class
Returns the keyword arguments for instantiating the form.
def get_form_kwargs(self):
"""
Returns the keyword arguments for instantiating the form.
"""
kwargs = {
'initial': self.get_initial(),
'prefix': self.get_prefix(),
}
if self.request.method in ('POST', 'PUT'):
kwargs.update({
'data': self.request.POST,
'files': self.request.FILES,
})
return kwargs
Returns the initial data to use for forms on this view.
def get_initial(self):
"""
Returns the initial data to use for forms on this view.
"""
return self.initial.copy()
Returns the prefix to use for forms on this view
def get_prefix(self):
"""
Returns the prefix to use for forms on this view
"""
return self.prefix
Returns the supplied success URL.
def get_success_url(self):
"""
Returns the supplied success URL.
"""
if self.success_url:
# Forcing possible reverse_lazy evaluation
url = force_text(self.success_url)
else:
raise ImproperlyConfigured(
"No URL to redirect to. Provide a success_url.")
return url