忽略 ElementTree 中的 XML 命名空间
ElementTree 的 findall 和 find 方法在从包含命名空间的 XML 文件中查找元素时需要命名空间感知方法。但是,如果大量标签需要命名空间,这可能会很麻烦。
使用 Iterparse 忽略命名空间
要忽略命名空间,我们可以利用 ElementTree 的 iterparse 方法。操作方法如下:
<code class="python">from io import StringIO # Python 2: import from StringIO instead import xml.etree.ElementTree as ET # Parse the XML file it = ET.iterparse(StringIO(xml)) # Strip namespace from tags for _, el in it: _, _, el.tag = el.tag.rpartition('}') # strip ns root = it.root</code>
此方法通过删除命名空间来修改标签名称,从而无需显式指定命名空间即可更轻松地定位元素。正如此处讨论中所建议的,此技术在处理多个命名空间和别名方面提供了更大的灵活性。
以上是使用 ElementTree 的 findall 和 find 方法时如何忽略 XML 名称空间?的详细内容。更多信息请关注PHP中文网其他相关文章!