摘要: 1 from django.utils.decorators import method_decorator 2 3 def outer(func): 4 def inner(*args,**kwargs): #inner接收参数 5 print(args) 6 return func(*args, 阅读全文
posted @ 2020-08-04 15:09 ttoia 阅读(96) 评论(0) 推荐(0) 编辑