doufu1939 2014-08-22 06:28
浏览 28
已采纳

可以在此golang代码中使用较少的`struct`s吗?

Given the following XML which is out of my control:

  <Stuff>
  <SomeData>
    <SomeDataStuff>
      <AccountDetails>
        <Person xsi:nil="true" />
        <Person xsi:nil="true" />
      </AccountDetails>
      <CandidateDetails>
        <Candidate xsi:nil="true" />
        <Candidate xsi:nil="true" />
      </CandidateDetails>
    </SomeDataStuff>
  </SomeData>
  </Stuff>

I am able to unmarshal using the following, can it be simplified somewhat?

 type Stuff struct {
         XMLName  xml.Name
         SomeData SomeData
 }

 type SomeData struct {
         XMLName       xml.Name
         SomeDataStuff SomeDataStuff
 }

type SomeDataStuff struct {
         AccountDetails   AccountDetails   `xml:"AccountDetails"`
         CandidateDetails CandidateDetails `xml:"CandidateDetails"`
}

 type AccountDetails struct {
         Person   []Person
 }       

 type CandidateDetails struct {
         Candidate []Candidate
 }       

 type Person struct {
         ...
 }       

 type Candidate struct {
         ...
 }       

Im not worried about marshalling, just unmarshalling. Really all I need is an array of Person and Candidate, not a whole sequence of nested pointless struct's

  • 写回答

1条回答 默认 最新

  • dtnpf35197 2014-08-22 06:44
    关注

    You can use a selector, for example:

    // replace []string with []Person/[]Candidate
    type Stuff struct {
        People     []string `xml:"SomeData>SomeDataStuff>AccountDetails>Person"`
        Candidates []string `xml:"SomeData>SomeDataStuff>CandidateDetails>Candidate"`
    }
    

    //edit, I updated the example to show that marshalling also works fine.

    <kbd>playground</kbd>

    From http://golang.org/pkg/encoding/xml/#Unmarshal:

    * If the XML element contains a sub-element whose name matches
       the prefix of a tag formatted as "a" or "a>b>c", unmarshal
       will descend into the XML structure looking for elements with the
       given names, and will map the innermost elements to that struct
       field. A tag starting with ">" is equivalent to one starting
       with the field name followed by ">".
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

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