page contents

如何给CBV的程序添加装饰器?

轩辕小不懂 发布于 2022-09-07 15:30
阅读 501
收藏 0
分类:Python开发
4266
Nen
Nen
- 程序员

引入method_decorator模块

(1.直接在类上加装饰器

@method_decorator(test,name='dispatch')

class Loginview(View):

    pass

(2.直接在处理的函数前加装饰器

@method_decorator(test)

def post(self,request,*args,**kwargs):

    pass

请先 登录 后评论