博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CBV加装饰器
阅读量:5958 次
发布时间:2019-06-19

本文共 3459 字,大约阅读时间需要 11 分钟。

CBV中加装饰器相关

CBV实现的登录视图

class LoginView(View):    def get(self, request):        """        处理GET请求        """        return render(request, 'login.html')    def post(self, request):        """        处理POST请求         """        user = request.POST.get('user')        pwd = request.POST.get('pwd')        if user == 'zk' and pwd == "zk1234":            next_url = request.GET.get("next")            # 生成随机字符串            # 写浏览器cookie -> session_id: 随机字符串            # 写到服务端session:            # {            #     "随机字符串": {'user':'zk'}            # }            request.session['user'] = user            if next_url:                return redirect(next_url)            else:                return redirect('/index/')        return render(request, 'login.html')

要在CBV视图中使用我们上面的check_login装饰器,有以下三种方式:

from django.utils.decorators import method_decorator

1. 加在CBV视图的get或post方法上

from django.utils.decorators import method_decoratorclass HomeView(View):    def dispatch(self, request, *args, **kwargs):        return super(HomeView, self).dispatch(request, *args, **kwargs)    def get(self, request):        return render(request, "home.html")        @method_decorator(check_login)    def post(self, request):        print("Home View POST method...")        return redirect("/index/")

2. 加在dispatch方法上

from django.utils.decorators import method_decoratorclass HomeView(View):    @method_decorator(check_login)    def dispatch(self, request, *args, **kwargs):        return super(HomeView, self).dispatch(request, *args, **kwargs)    def get(self, request):        return render(request, "home.html")    def post(self, request):        print("Home View POST method...")        return redirect("/index/")

因为CBV中首先执行的就是dispatch方法,所以这么写相当于给get和post方法都加上了登录校验。

3. 直接加在视图类上,但method_decorator必须传 name 关键字参数

如果get方法和post方法都需要登录校验的话就写两个装饰器。

from django.utils.decorators import method_decorator@method_decorator(check_login, name="get")@method_decorator(check_login, name="post")class HomeView(View):    def dispatch(self, request, *args, **kwargs):        return super(HomeView, self).dispatch(request, *args, **kwargs)    def get(self, request):        return render(request, "home.html")    def post(self, request):        print("Home View POST method...")        return redirect("/index/")

补充

CSRF Token相关装饰器在CBV只能加到dispatch方法上,或者加在视图类上然后name参数指定为dispatch方法。

备注:

  • csrf_protect,为当前函数强制设置防跨站请求伪造功能,即便settings中没有设置全局中间件。
  • csrf_exempt,取消当前函数防跨站请求伪造功能,即便settings中设置了全局中间件。
from django.views.decorators.csrf import csrf_exempt, csrf_protectfrom django.utils.decorators import method_decoratorclass HomeView(View):    @method_decorator(csrf_exempt)    def dispatch(self, request, *args, **kwargs):        return super(HomeView, self).dispatch(request, *args, **kwargs)    def get(self, request):        return render(request, "home.html")    def post(self, request):        print("Home View POST method...")        return redirect("/index/")

或者

from django.views.decorators.csrf import csrf_exempt, csrf_protectfrom django.utils.decorators import method_decorator@method_decorator(csrf_exempt, name='dispatch')class HomeView(View):       def dispatch(self, request, *args, **kwargs):        return super(HomeView, self).dispatch(request, *args, **kwargs)    def get(self, request):        return render(request, "home.html")    def post(self, request):        print("Home View POST method...")        return redirect("/index/")

转载于:https://www.cnblogs.com/ZKPython/p/11046899.html

你可能感兴趣的文章
C++语言基础(4)-构造函数和析构函数
查看>>
ASP.NET MVC下使用AngularJs语言(六):获取下拉列表的value和Text
查看>>
对计算机软件专业学生的忠告
查看>>
Visual Studio 2010 单元测试目录(转)
查看>>
【JS】引用类型之Function
查看>>
【CSS3初探之背景边框相关】奇葩的与老大吵了一架,奇葩的五分钟offer,奇葩的一天。。。...
查看>>
剑指 offer set 2 从头到尾打印链表
查看>>
Java信号量Semaphore
查看>>
电子邮件的正则表达式
查看>>
ios使用openUrl进行应用跳转
查看>>
MySQL: Set user variable from result of query
查看>>
JVM调优之jstack找出最耗cpu的线程并定位代码
查看>>
厉害了,我的李楠!魅蓝E3发布会要上演“打飞机”?
查看>>
拿下中国物流界奥斯卡三项大奖,京东X事业部还有哪些黑科技
查看>>
天猫11·11:蚂蚁金服如何用小团队支撑数亿人买买买?
查看>>
阿里总部对外解密双11超级工程背后的数据库技术
查看>>
通信厂商做路由器,能做成什么样?
查看>>
福建漳州海域一货轮沉没 11人获救1人失联
查看>>
四川江安戏剧“青年训练营”:播撒颗颗戏剧种子
查看>>
中关村培养世界级科技领军企业
查看>>