Django中的dispatch方法

class InfoMG(View):
    @method_decorator(csrf_exempt)
    @method_decorator(login_required)
    def dispatch(self, request, *args, **kwargs):
        return super(InfoMG, self).dispatch(request, *args, **kwargs)

    def get(self, request):
        pass

    def post(self, request):
     pass

简单说作用就是当请求的get或者post的方法之前执行这个dispatch方法,如果定义了什么变量函数都会先执行  

Django中的dispatch方法

上一篇:Echarts 样式备份(伪3D双柱状图 + 双折线图),适配蓝色背景科技风


下一篇:0ull 是什么意思?