最佳答案
这是 Python 2.5,也是 GAE,不过没关系。
我有以下代码。我在 bar 中装饰 foo ()方法,使用 dec_check
类作为装饰器。
class dec_check(object):
def __init__(self, f):
self.func = f
def __call__(self):
print 'In dec_check.__init__()'
self.func()
class bar(object):
@dec_check
def foo(self):
print 'In bar.foo()'
b = bar()
b.foo()
在执行这个命令时,我希望看到:
In dec_check.__init__()
In bar.foo()
但是我得到的 TypeError: foo() takes exactly 1 argument (0 given)
作为 .foo()
,作为一个对象方法,使用 self
作为参数。我猜问题在于,当我执行装饰器代码时,bar
的实例实际上并不存在。
那么如何将 bar
的实例传递给装饰器类呢?