Class that takes a normal none derived class and converts it into a view. The methods return simple datastructures which makes it easier to test.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | class View(object):
def __init__(self, controller):
self.controller = controller()
def as_template(self, template):
def view(request, *args, **kwargs):
return TemplateResponse( request, template, self.handler(request, *args, **kwargs) )
return view
def handler(self, request, *args, **kwargs):
method = request.method.lower()
handler = getattr(self.controller, method)
return handler(request, *args, **kwargs)
#Use a none derived class with http methods that return simple data structures.
class HomeView(object):
def get(self, request):
return { 'foo' : 'bar' }
#In your url confs you can specify what the view returns. Only as_template is available.
url( r'^$', View(HomeView).as_template('home.html'), name='homepage' )
|
More like this
- Template tag - list punctuation for a list of items by shapiromatron 10 months, 1 week ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 10 months, 2 weeks ago
- Serializer factory with Django Rest Framework by julio 1 year, 5 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 6 months ago
- Help text hyperlinks by sa2812 1 year, 6 months ago
Comments
Please login first before commenting.