gpt4 book ai didi

python - 在x节点minidom xml python之后插入

转载 作者:数据小太阳 更新时间:2023-10-29 02:26:15 25 4
gpt4 key购买 nike

我正在将一个节点附加到 xml,但我希望它插入到某些标记之前,这可能吗?

newNode = xmldoc.createElement("tag2")
txt = xmldoc.createTextNode("value2")
newNode.appendChild(txt)
n.appendChild(newNode)

这是我的 XML。当我追加 child 时,它在 UniMed 之后添加,我希望它在 Cantidad 之后和 UniMed 之前插入。 (我的 XML 的简化版本)“项目”可以有更多的 child ,我不知道有多少。

<ns0:Item>
<ns0:Cantidad>1</ns0:Cantidad>
<ns0:UniMed>L</ns0:UniMed>
</ns0:Item>

我想我可以通过读取 Item 的所有子项来解决它,删除它们,然后按照我想要的顺序添加它们。但我认为这不是最好的主意...

有什么想法吗?


已编辑

解决方案

itemChildNodes = n.childNodes
n.insertBefore(newNode, itemChildNodes[itemChildNodes.length-2])

最佳答案

使用insertBefore方法插入新创建的标签。

演示:

>>> from xml.dom import minidom
>>> content = """
... <xml>
... <Item>
... <Cantidad>1</Cantidad>
... <UniMed>L</UniMed>
... </Item>
... </xml>
... """
>>> root = minidom.parseString(content)
>>> insert_tag = root.createElement("tag2")
>>> htext = root.createTextNode('test')
>>> insert_tag.appendChild(htext)
<DOM Text node "'test'">
>>>
>>> items = root.getElementsByTagName("Item")
>>> item = items[0]
>>> item_chidren = item.childNodes
>>> item.insertBefore(insert_tag, item_chidren[2])
<DOM Element: tag2 at 0xb700da8c>
>>> root.toxml()
u'<?xml version="1.0" ?><xml>\n\t<Item>\n\t <Cantidad>1</Cantidad><tag2>test</tag2>\n\t <UniMed>L</UniMed>\n\t</Item>\n</xml>'
>>>

关于python - 在x节点minidom xml python之后插入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29492233/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com