~~~
<head get='log'>
<name>姓名</name>
<age>年龄</age>
<address>
<add1>中国</add1>
<add1>美国</add1>
</address>
<type ziduan='字段1' ziduan2='字段2'></type>
<program>
<Sing/>
<dance/>
<Art/>
</program>
</head>
~~~
更多评论
type Head struct {
XMLName xml.Name `xml:"head"`
Get string `xml:"get,attr"`
Name string `xml:"name"`
Age string `xml:"age"`
Address struct {
Add1 string `xml:"add1"`
Add1 string `xml:"add1"`
} xml.Name `xml:"address"`
Type struct {
Ziduan string `xml:"ziduan,attr"`
Ziduan2 string `xml:"ziduan2,attr"`
} xml.Name `xml:"type"`
Program struct {
Sing string `xml:"Sing"`
Dance string `xml:"dance"`
Art string `xml:"Art"`
} xml.Name `xml:"program"`
}
#1