Take the legwork out of processing forms.
Most people have a very specific structure to how they process forms in views. If the request method is "GET", then some HTML (with the blank form) is rendered. If the method is "POST", then the form is validated. If the form is invalid, some other HTML is displayed. If valid, the data is submitted and processed in some way.
In order to do this all in a much nicer way, simply subclass FormHandler, define three methods (valid, invalid and unbound), point to the form, and use the subclass as your view in the URLconf.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | from django.http import HttpResponse
class FormHandler(HttpResponse):
def __init__(self, request, *args, **kwargs):
if request.method == 'POST':
form = self.form(request.POST)
if form.is_valid():
self._update(self.valid(request, form, *args, **kwargs))
else:
self._update(self.invalid(request, form, *args, **kwargs))
else:
self._update(self.unbound(request, self.form(), *args, **kwargs))
def _update(self, response):
if not response:
return
self._charset = response._charset
self._is_string = response._is_string
self._container = response._container
self._headers.update(response._headers)
self.cookies.update(response.cookies)
self.status_code = response.status_code
###########
# EXAMPLE #
###########
class MyFormHandler(FormHandler):
form = MyForm
def valid(self, request, form):
process_form(form)
submit(some_data)
do(something)
return HttpResponse('Everything went OK.')
def invalid(self, request, form):
return render_to_response('errors_in_form.html', {'form': form})
def unbound(self, request, form):
return render_to_response('form_input.html', {'form': form})
|
More like this
- find even number by Rajeev529 2 weeks, 4 days ago
- Form field with fixed value by roam 1 month, 1 week ago
- New Snippet! by Antoliny0919 1 month, 2 weeks ago
- Add Toggle Switch Widget to Django Forms by OgliariNatan 4 months ago
- get_object_or_none by azwdevops 7 months, 4 weeks ago
Comments
Please login first before commenting.