码迷,mamicode.com
首页 > 其他好文 > 详细

django dispatch

时间:2017-12-18 19:16:54      阅读:466      评论:0      收藏:0      [点我收藏+]

标签:self   method   return   一个   common   images   print   after   sel   

from django.views import View
# 这里Home需要继承View
class Home(View):
    # 这样这里就相当于一个装饰器的功能,可以自己定制化内容
    def dispatch(self, request, *args, **kwargs):
        # 调用父类中dispatch方法
        print("before")
        result = super(Home, self).dispatch(request,*args,**kwargs)
        print("after")
        return result
    def get(self,request):
        print(request.method)
        return render(request,"home.html")
    def post(self,request):
        print(request.method)
        return render(request, "home.html")
技术分享图片

技术分享图片

这样从效果就可以看出当再次访问home页面的时候,每次都需要打印before以及after



django dispatch

标签:self   method   return   一个   common   images   print   after   sel   

原文地址:http://www.cnblogs.com/howhy/p/8057964.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!