• 装饰器详解


    1.装饰器案例 

    def auth(func):
        def inner(*args,**kwargs):
    
            print("执行被装饰函数前要执行的函数")
            ret =func(*args,**kwargs)
            print("执行被装饰函数前要执行的函数")
            return ret
    
        return inner
    
    @auth
    def index(*args,**kwargs):
        print("hello")
    
    index()
     
    print(index)
    print(index.__name__)

    打印结果 (装饰后 函数名发生了变化):

    执行被装饰函数前要执行的函数
    hello
    执行被装饰函数前要执行的函数
    <function auth.<locals>.inner at 0x0000023B35134840>
    inner

    装饰器步骤

    def auth(func):   # 第一步
        def inner(*args,**kwargs):  #第六步
    
            print("执行被装饰函数前要执行的函数")
            ret =func(*args,**kwargs)  #第七步
            print("执行被装饰函数前要执行的函数")
            return ret  #第九步
    
        return inner  #第三步 返回inner
    
    @auth    # index =auth(index)   #第二步 auth(index)   第四步 index =inner
    def index(*args,**kwargs):
        print("hello")    #第八步
    
    index()  #第五步
    
    print(index)
    print(index.__name__)

    给装饰器添加修复器

    functiontools.wrapper()  ,装饰器会破坏原函数的完整性 ,原函数的内置属性会跟随装饰器的第二层嵌套的函数一致,通过functiontools会还原原函数的属性的完整性.

    import  functools
    def auth(func):   # 第一步
    
        @functools.wraps(func)
        def inner(*args,**kwargs):  #第六步
    
            print("执行被装饰函数前要执行的函数")
            ret =func(*args,**kwargs)  #第七步
            print("执行被装饰函数前要执行的函数")
            return ret  #第九步
    
        return inner  #第三步 返回inner
    
    @auth    # index =auth(index)   #第二步 auth(index)   第四步 index =inner
    def index(*args,**kwargs):
        print("hello")    #第八步
    
    index()  #第五步
    
    print(index)
    print(index.__name__)

    打印结果:

    执行被装饰函数前要执行的函数
    hello
    执行被装饰函数前要执行的函数
    <function index at 0x000002657A4A4840>
    index
  • 相关阅读:
    再提一个建议,不过就要辛苦dudu了
    项目中的小项目实现在望
    Visual Studio.Net 技术Tip
    IQueryable与foreach的困惑?
    [转贴]浅析大型网站的架构
    [原创]WCF入门级使用教程(转载请注明出处)
    [原创]在msmq3.0中使用http协议发送消息
    [转贴][WCF Security] 4. 用户名/密码身份验证
    [转贴][WCF Security] 1. 基本概念
    [转]在SQL Server2005中进行错误捕捉
  • 原文地址:https://www.cnblogs.com/mengbin0546/p/10741553.html
Copyright © 2020-2023  润新知