December 2018
Beginner to intermediate
796 pages
19h 54m
English
We can essentially process a form by subclassing the View class itself:
class ClassBasedFormView(generic.View):
template_name = 'form.html'
def get(self, request):
form = PersonDetailsForm()
return render(request, self.template_name, {'form': form})
def post(self, request):
form = PersonDetailsForm(request.POST)
if form.is_valid():
# Success! We can use form.cleaned_data now
return redirect('success')
else:
# Invalid form! Reshow the form with error highlighted
return render(request, self.template_name,
{'form': form})
Compare this code with the sequence diagram that we saw previously. The three scenarios have been separately handled.
Every form is expected to follow the post/redirect/get (PRG) pattern. ...
Read now
Unlock full access