类视图使用装饰器
Posted niuxingyu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了类视图使用装饰器相关的知识,希望对你有一定的参考价值。
#类视图使用装饰器
第一种方法在urls文件中设置路由视图方法时导入装饰器方法
path(‘/cartlist‘,check_login(CartList.as_view())),
第二种方法 导入模块
from django.utils.decorators import method_decorator
name=‘get‘ 指定装饰get方法
@method_decorator(check_login,name=‘get‘)
以上是关于类视图使用装饰器的主要内容,如果未能解决你的问题,请参考以下文章