以下是我的示例代码:
from xml.dom.minidom import *
def make_xml():
doc = Document()
node = doc.createElement('foo')
node.innerText = 'bar'
doc.appendChild(node)
return doc
if __name__ == '__main__':
make_xml().writexml(sys.stdout)
当我运行上面的代码时,我得到了这个:
<?xml version="1.0" ?>
<foo/>
我想得到:
<?xml version="1.0" ?>
<foo>bar</foo>
我只是猜测有一个innerText属性,它没有给出编译器错误,但似乎不起作用......我该如何创建文本节点?
答案 0 :(得分:11)
@Daniel
感谢您的回复,我也想出了如何使用minidom(我不确定ElementTree与minidom之间的区别)
from xml.dom.minidom import *
def make_xml():
doc = Document();
node = doc.createElement('foo')
node.appendChild(doc.createTextNode('bar'))
doc.appendChild(node)
return doc
if __name__ == '__main__':
make_xml().writexml(sys.stdout)
我发誓我在发布问题之前尝试了这个......
答案 1 :(得分:9)
在对象上设置属性不会产生编译时错误或运行时错误,如果对象不访问它,它将无效(即“node.noSuchAttr = 'bar'
”也不会给出错误。)
除非您需要minidom
的特定功能,否则我会看ElementTree
:
import sys
from xml.etree.cElementTree import Element, ElementTree
def make_xml():
node = Element('foo')
node.text = 'bar'
doc = ElementTree(node)
return doc
if __name__ == '__main__':
make_xml().write(sys.stdout)
答案 2 :(得分:4)
我找到了pretty verbose tutorial on the minidom method
这是一个tutorial for the etree method。阅读起来要好得多,而且看起来很简单。它还解析了xml(简要)