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 拟通过pc下指令到安卓系统,如果追求响应速度,尽可能无延迟,是不是用安卓模拟器会优于实体的安卓手机?如果是,可以快多少毫秒?
  • ¥20 神经网络Sequential name=sequential, built=False
  • ¥16 Qphython 用xlrd读取excel报错
  • ¥15 单片机学习顺序问题!!
  • ¥15 ikuai客户端多拨vpn,重启总是有个别重拨不上
  • ¥20 关于#anlogic#sdram#的问题,如何解决?(关键词-performance)
  • ¥15 相敏解调 matlab
  • ¥15 求lingo代码和思路
  • ¥15 公交车和无人机协同运输
  • ¥15 stm32代码移植没反应