gpt4 book ai didi

Python 有没有办法使用装饰器包装类的函数?

转载 作者:太空宇宙 更新时间:2023-11-04 09:43:44 25 4
gpt4 key购买 nike

最后我解决了这个问题,使用这样的代码:(2018-06-03)

class Main:
@app.route('^/$')
def default(self):
return 'hello from class ccc'

module=sys.modules[func.__module__]
cls=getattr(module,func.__qualname__.replace('.'+func.__name__,''))
ins=cls()
m=getattr(cls,func.__name__)
resp.body=m(cls) #func.__module__+'.'+func.__qualname__+' func:'+func.__name__

那不是 pyhonic 对吗?我是 python 的新手

//////旧

class D:
def __init__(self):
self.handlers={}

def check(self,func):
self.handlers['h']=func

def decorator(*args,**kwargs):
return func(*args,**kwargs)
return decorator

def call(self,p):
return self.handlers['h'](p)

d=D()

class Test:
@d.check
def prt(self,v):
print(v)

t=Test()
d.call(123)

有错误信息:prt() 缺少 1 个必需的位置参数:'v'

似乎需要一个名为“self”的参数,但我该如何传递它?

//编辑(2018-06-01)

感谢所有人。我问这个是因为我尝试编写一个 python web 框架。我想路由到如下所示的类方法

app=MyFrm()

class Controller:
@app.route('/')
def hello():
return 'hello world'

但现有的确实像下面这样。在 python 中不需要或没有人这样做?

app = Flask(__name__)

@app.route("/")
def hello():
return "Hello World!"

现在我使用@staticmethod 解决了这个问题

最佳答案

装饰器在声明函数时被应用,所以就在函数被注册为方法的类被创建之前。

因此传递给装饰器的 func 未绑定(bind)到实例,并且您不能在不显式传递实例的情况下调用它。此外,您无权访问存储在 t 中的实例,它完全是在装饰器之外创建的。

您必须显式传递实例才能调用方法:

t = Test()
d.call(t, 123)

或在 __init__ 方法中创建实例后 注册方法。当您通过 decriptor protocol 将它们作为实例的属性查找时,方法就会被绑定(bind).只有绑定(bind)方法具有对要绑定(bind)到 self 的实例的引用:

>>> class Foo:
... def bar(self):
... return self
...
>>> Foo.bar # unbound
<function Foo.bar at 0x108d38f28>
>>> Foo.bar() # no self to bind to
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: bar() missing 1 required positional argument: 'self'
>>> instance = Foo()
>>> instance.bar # bound method
<bound method Foo.bar of <__main__.Foo object at 0x109a916d8>>
>>> instance.bar.__self__ is instance # to the instance
True
>>> instance.bar() # so the instance is passed in for self
<__main__.Foo object at 0x109a916d8>
>>> Foo.bar(instance) # or you can do it manually
<__main__.Foo object at 0x109a916d8>

如果您确实将您的注册修复为存储绑定(bind)方法,您将需要考虑到注册现在是对实例的额外引用,即使所有其他实例都保持在内存中对实例的引用被删除。如果这是一个问题,您需要使用对未绑定(bind)函数和实例的弱引用,而不是对方法的引用,因为方法是动态创建的,通常没有对它们的其他引用。参见 using python WeakSet to enable a callback functionality

关于Python 有没有办法使用装饰器包装类的函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50649020/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com