December 2016
Beginner to intermediate
694 pages
14h 2m
English
As in previous chapters, I've shown you the simplest thing that could possibly work. Now I'll point out some problems and show you how to improve it. First, our search() view's handling of an empty query is poor-we're just displaying a Please submit a search term. message, requiring the user to hit the browser's back button.
This is horrid and unprofessional, and if you ever actually implement something like this in the wild, your Django privileges will be revoked. It would be much better to redisplay the form, with an error preceding to it, so that the user can try again immediately. The easiest way to do that would be to render the template again, like this:
from django.http import HttpResponse from django.shortcuts ...
Read now
Unlock full access