- Author:
- diverman
- Posted:
- September 23, 2010
- Language:
- Python
- Version:
- Not specified
- Score:
- 0 (after 0 ratings)
When you neeed to do redirect and request object is not available, you can do it with exception.
Put exception handler somewhere request is available, for example to middleware or ModelAdmin.
Raise exception, where request is not available.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | class Redirect(Exception):
def __init__(self, url):
self.url = url
# where request is not:
raise Redirect(reverse('someurl'))
# redirect handler, where request is:
from django.http import HttpResponseRedirect
try:
return something(request, ...)
except Redirect, r:
return HttpResponseRedirect(r.url)
|
More like this
- Stuff by NixonDash 1 month ago
- Add custom fields to the built-in Group model by jmoppel 3 months, 1 week ago
- Month / Year SelectDateWidget based on django SelectDateWidget by pierreben 6 months, 3 weeks ago
- Python Django CRUD Example Tutorial by tuts_station 7 months, 1 week ago
- Browser-native date input field by kytta 8 months, 3 weeks ago
Comments
Please login first before commenting.