我目前的代码是
xml_obj = lxml.objectify.Element('root_name')
xml_obj[root_name] = str('text')
lxml.etree.tostring(xml_obj)
但这会创建以下xml:
<root_name><root_name>text</root_name></root_name>
在我使用它的应用程序中,我可以轻松地使用文本替换来解决这个问题,但是知道如何使用库来做它会很好。
答案 0 :(得分:3)
我对objectify
并不熟悉,但我并不认为这是他们打算使用的方式。它表示对象的方式是,任何给定级别的节点都是一个类名,子节点是字段名(带有类型)和值。而使用它的正常方式更像是这样:
xml_obj = lxml.objectify.Element('xml_obj')
xml_obj.root_path = 'text'
etree.dump(xml_obj)
<root_name xmlns:py="http://codespeak.net/lxml/objectify/pytype" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" py:pytype="TREE">
<root_name py:pytype="str">text</root_name>
</root_name>
使用etree
xml_obj = lxml.etree.Element('root_path')
xml_obj.text = 'text'
etree.dump(xml_obj)
<root_path>text</root_path>
如果你真的需要它在objectify
,看起来你不应该直接混合,你可以使用tostring
生成XML,然后objectify.fromstring
带来回来了。但可能,如果这是您想要的,您应该使用etree
来生成它。
答案 1 :(得分:1)
我不认为你可以将数据写入根元素。您可能需要创建一个这样的子元素:
xml_obj = lxml.objectify.Element('root_name')
xml_obj.child_name = str('text')
lxml.etree.tostring(xml_obj)