CBV中加装饰器 from django import views from django.utils.decorators import method_decorator def login_auth(func): def inner(request,*args,**kwargs): next_url=request.get_full_path() if request.COOKIES.get('is_login'): return func(request,*args,**kwargs) e