给指定方法加python
from django.utils.decorators import method_decorator class xx(View): @method_decorator(装饰器方法) def post(self, request): ...
给dispatch加django
@method_decorator(装饰器方法) def dispatch(self, request, *args, **kwargs): ...
给类加post
from django.utils.decorators import method_decorator @method_decorator(装饰器方法, name="get") @method_decorator(装饰器方法, name="post") class xxxx(View): ...