Golang XML 解析

我的 XML 数据:


<dictionary version="0.8" revision="403605">

    <grammemes>

        <grammeme parent="">POST</grammeme>

        <grammeme parent="POST">NOUN</grammeme>

    </grammemes>

</dictionary>

我的代码:


type Dictionary struct {

    XMLName xml.Name `xml:"dictionary"`

    Grammemes *Grammemes `xml:"grammemes"`

}


type Grammemes struct {

    Grammemes []*Grammeme `xml:"grammeme"`

}


type Grammeme struct {

    Name string `xml:"grammeme"`

    Parent string `xml:"parent,attr"`

}

我得到 Grammeme.Parent 属性,但我没有得到 Grammeme.Name。为什么?


小怪兽爱吃肉
浏览 213回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go