douque8861 2019-09-13 17:33
浏览 51
已采纳

如何从元帅重新排列XML标签

The program I'm exporting XML for seems to want the xml tags to be in a specific order like the example below

<xml>
  <tagType1>data 1</tagType1>
  <tagType2>data 2</tagType2>
  <tagType1>data 3</tagType1>
  <tagType2>data 4</tagType2>
</xml>

In go, I marshal into a struct like below

type xml struct {
  TagType1 []string `xml:"tagType1"`
  TagType2 []string `xml:"tagType2"`
}

When I marshal that back out, it sorts the tags which is expected, but that is not what I need.

<xml>
  <tagType1>data 1</tagType1>
  <tagType1>data 3</tagType1>
  <tagType2>data 2</tagType2>
  <tagType2>data 4</tagType2>
</xml>

Is there a way with the encoding/xml package to reproduce the output in the first example? The order varies. I read an xml file with specific orders, modify the data and marshal that back out. I need the tag order to be kept.

  • 写回答

1条回答 默认 最新

  • duanpo2813 2019-09-13 17:43
    关注

    You should be able to use something like this:

    type xml struct {
       Item []ItemStruct `xml:",any"`
    }
    
    type ItemStruct struct {
      XMLName xml.Name
      Value string `xml:",chardata"`
    }
    

    That way you can keep the order, but you need to get the element name from each item by Item[i].XMLName

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 基于卷积神经网络的声纹识别
  • ¥15 Python中的request,如何使用ssr节点,通过代理requests网页。本人在泰国,需要用大陆ip才能玩网页游戏,合法合规。
  • ¥100 为什么这个恒流源电路不能恒流?
  • ¥15 有偿求跨组件数据流路径图
  • ¥15 写一个方法checkPerson,入参实体类Person,出参布尔值
  • ¥15 我想咨询一下路面纹理三维点云数据处理的一些问题,上传的坐标文件里是怎么对无序点进行编号的,以及xy坐标在处理的时候是进行整体模型分片处理的吗
  • ¥15 CSAPPattacklab
  • ¥15 一直显示正在等待HID—ISP
  • ¥15 Python turtle 画图
  • ¥15 stm32开发clion时遇到的编译问题