我试图list()
使用 Python 装饰器创建一个类的嵌套attrs
,并注意到它attrs.asdict()
在某些级别的子变量上不起作用。这样:
attrs.asdict(mlle)
显示正常attrs.asdict(mlle.list_of_list_of_elements)
#失败attrs.asdict(mlle.list_of_list_of_elements[0])
显示正常
我的工作示例是:
import attr
@attr.s
class MyElement(object):
element = attr.ib(default="mydefault", type=str)
@attr.s(slots=True)
class MyListOfElements(object):
one_element = attr.ib(default=attr.Factory(MyElement))
list_of_elements = attr.ib(default=attr.Factory(list), type=list)
def add(self, le):
self.list_of_elements.append(le)
@attr.s(slots=True)
class MyListOfList(object):
version = attr.ib(default=None, type=str)
list_of_list_of_elements = attr.ib(default=attr.Factory(list)) # Where's the dunder for this list?
e1 = MyElement("1.1.1.1")
e1_1 = MyElement("11.11.11.11")
le1 = MyListOfElements()
le1.add(e1)
le1.add(e1_1)
print("le1:", le1)
e2 = MyElement("2.2.2.2")
le2 = MyListOfElements(e2)
le2.list_of_elements.append(e2)
print("le2:", le2)
mlle = MyListOfList()
print("mlle:", mlle)
mlle.list_of_list_of_elements.append(le1)
mlle.list_of_list_of_elements.append(le2)
print("mlle:", mlle)
现在继续使用该attr.asdict()
功能...
# attr.Dict
print("asdict(mlle):", attr.asdict(mlle))
print("asdict(mlle.lle):", attr.asdict(mlle.list_of_list_of_elements)) # FAILS
print("asdict(mlle.lle[0]):", attr.asdict(mlle.list_of_list_of_elements[0]))
我很确定我做错了一些简单的事情,因为我认为我用attrs
.
我更感到困惑的attr.asdict()
是,在每个虚线子变量上都不能顺利使用,这样mlle
和mlle.list_of_list_of_elements[0]
工作,但不是mlle.list_of_list_of_elements
介于两者之间。