个性化阅读
专注于IT技术分析

Python如何创建功能装饰器链?有相关实例吗?

Python如何创建功能装饰器链?有相关实例吗?如何在Python中创建两个装饰器来执行以下操作

@makebold
@makeitalic
def say():
   return "Hello"
// 它应该返回:
"<b><i>Hello</i></b>"

我并没有试图在实际应用程序中以这种方式创建HTML—只是试图理解decorator和decorator链接是如何工作的。

查看文档,了解装饰器是如何工作的,下面是你想要的答案:

from functools import wraps

def makebold(fn):
    @wraps(fn)
    def wrapped(*args, **kwargs):
        return "<b>" + fn(*args, **kwargs) + "</b>"
    return wrapped

def makeitalic(fn):
    @wraps(fn)
    def wrapped(*args, **kwargs):
        return "<i>" + fn(*args, **kwargs) + "</i>"
    return wrapped

@makebold
@makeitalic
def hello():
    return "hello world"

@makebold
@makeitalic
def log(s):
    return s

print hello()        # returns "<b><i>hello world</i></b>"
print hello.__name__ # with functools.wraps() this returns "hello"
print log('hello')   # returns "<b><i>hello</i></b>"
赞(0)
未经允许不得转载:srcmini » Python如何创建功能装饰器链?有相关实例吗?

评论 抢沙发

评论前必须登录!