gpt4 book ai didi

python - 从装饰器访问 self

转载 作者:IT老高 更新时间:2023-10-28 21:40:51 25 4
gpt4 key购买 nike

在 unittest 的 setUp() 方法中,我设置了一些 self 变量,稍后在实际测试中会引用这些变量。我还创建了一个装饰器来做一些日志记录。有没有一种方法可以让我从装饰器中访问那些 self 变量?

为简单起见,我发布此代码:

def decorator(func):
def _decorator(*args, **kwargs):
# access a from TestSample
func(*args, **kwargs)
return _decorator

class TestSample(unittest.TestCase):
def setUp(self):
self.a = 10

def tearDown(self):
# tear down code

@decorator
def test_a(self):
# testing code goes here

从装饰器访问 a(在 setUp() 中设置)的最佳方式是什么?

最佳答案

由于您正在装饰一个方法,并且 self 是一个方法参数,因此您的装饰器可以在运行时访问 self。显然不是在解析时,因为还没有对象,只是一个类。

所以你把你的装饰器改成:

def decorator(func):
def _decorator(self, *args, **kwargs):
# access a from TestSample
print 'self is %s' % self
return func(self, *args, **kwargs)
return _decorator

关于python - 从装饰器访问 self ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7590682/

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