django中视图函数中装饰器

方法

给指定方法

from django.utils.decorators import method_decorator

class xx(View):
    @method_decorator(装饰器方法)
    def post(self,request):
                    ...

方法

dispatch加

@method_decorator(装饰器方法)
def dispatch(self,request,*args,**kwargs):
    ...

方法

给类加

from django.utils.decorators import method_decorator
@method_decorator(装饰器方法,name="get")
@method_decorator(装饰器方法,name="post")
class xxxx(View):
    ... 

相关文章

1. General Supported Versions 2. Settings STATIC_URL MED...
问题01:Django枚举类型扩展方法(Model.get_FOO_display()) ...
verbose_name 可以作为第一个参数传入,使书写更加工整和有序...
# use_2to3 is invalid
# Django枚举类型扩展方法&a...
一、层次结构 GenericViewSet(ViewSetMixin, generics.Gener...