这是 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)
as .foo()
,作为一个对象方法,self
作为一个参数。我猜问题是bar
当我执行装饰器代码时,实例实际上并不存在。
那么如何将实例传递bar
给装饰器类呢?