我已经对 QName 进行了大量阅读,但找不到任何关于如何使用它的好例子。有人能给我一个简单的例子来说明如何使用 QName 并解释它将在什么上下文中使用吗?
最佳答案
QName
可用于构造具有与包含元素位于不同 namespace 中的属性的 XML 文档。示例(Python 2.7):
from xml.etree import ElementTree as ET
NS1 = "http://example1.com"
NS2 = "http://example2.com"
ET.register_namespace("x", NS1)
ET.register_namespace("y", NS2)
qname1 = ET.QName(NS1, "root") # Element QName
qname2 = ET.QName(NS2, "attr") # Attribute QName
root = ET.Element(qname1, {qname2: "test"})
print ET.tostring(root)
输出:
<x:root xmlns:x="http://example1.com" xmlns:y="http://example2.com" y:attr="test" />
一个有用的应用程序是 XLink 。
关于python - 如何使用 QName(python xml.etree.ElementTree?),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31061996/