有没有办法在使用minidom处理XML时保留属性的原始顺序?
说我有:< color red =“255”green =“255”blue =“233”/>
当我用minidom修改它时,属性按字母顺序重新排列为蓝色,绿色和红色.我想保留原始订单.
我通过循环遍历elements = doc.getElementsByTagName(‘color’)返回的元素来处理文件,然后我做这样的分配e.attributes [“red”].value =“233”.
解决方法:
Is there a way I can preserve the original order of attributes when processing XML with minidom?