标签:log eth imp view car djang cart art 导入
#类视图使用装饰器
第一种方法在urls文件中设置路由视图方法时导入装饰器方法
path(‘/cartlist‘,check_login(CartList.as_view())),
第二种方法 导入模块
from django.utils.decorators import method_decorator
name=‘get‘ 指定装饰get方法
@method_decorator(check_login,name=‘get‘)
标签:log eth imp view car djang cart art 导入
原文地址:https://www.cnblogs.com/Niuxingyu/p/10415227.html