Using Django Forms For GET Urls
A regular occurance in writing webapps is the user will submit a form, and on the results page you’ll want to include a link which the user can click to resubmit the form. This lets users bookmark the page or you can add an extra parameter such as ‘format’ so they can download the results.
While Django forms contain several functions for converting the form to HTML, it doesn’t contain one to convert a bound form to url arguments.
Fortunately Python’s standard library module urllib
contains a module which converts a dictionary to a
properly formatted url argument string. We simply add a function, as_url_args
, which passes the form’s
cleaned data to this function and we get back a nice string we can add to a link.
import urllib
from django import forms
class MyForm(forms.Form):
name = forms.CharField
def as_url_args(self):
return urllib.urlencode(self.cleaned_data)
To use this in a template, where form
is the form object, we can add it to a link.
<a href="/form?&format=csv">Download As CSV</a>
Comments