Golang XML解析

前端之家收集整理的这篇文章主要介绍了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.为什么?

如果希望字段保存当前元素的内容,可以使用标记xml:“,chardata”.你标记你的结构的方式,而是寻找< grammeme>子元素.

因此,您可以解码的一组结构是:

type Dictionary struct {
    XMLName   xml.Name   `xml:"dictionary"`
    Grammemes []Grammeme `xml:"grammemes>grammeme"`
}

type Grammeme struct {
    Name   string `xml:",chardata"`
    Parent string `xml:"parent,attr"`
}

你可以在这里测试这个例子:http://play.golang.org/p/7lQnQOCh0I

原文链接:https://www.f2er.com/go/186929.html

猜你在找的Go相关文章