我需要解组的XML格式如下:
data := `
<table>
<name>
<code>23764</code>
<name>Smith, Jane</name>
</name>
<name>
<code>11111</code>
<name>Doe, John</name>
</name>
</table>
`
我尝试了以下结构和代码无效:
type Customers struct {
XMLName xml.Name `xml:"table"`
Custs []Customer
}
type Customer struct {
XMLName xml.Name `xml:"name"`
Code string `xml:"code"`
Name string `xml:"name"`
}
...
var custs Customers
err := xml.Unmarshal([]byte(data), &custs)
if err != nil {
fmt.Printf("error: %v", err)
return
}
fmt.Printf("%v", custs)
for _, cust := range custs.Custs {
fmt.Printf("Cust:\n%v\n", cust)
}
该范围不打印任何内容,而打印custs
仅给我{{ table} []}
答案 0 :(得分:17)
正确的结构如下:
type Customer struct {
Code string `xml:"code"`
Name string `xml:"name"`
}
type Customers struct {
Customers []Customer `xml:"name"`
}
你可以尝试on the playground here。
问题是您没有为[]Customer
分配xml标记。
使用xml.Name
解决这个问题的方法也是正确的,但更详细。
您可以查看工作代码here。
如果由于某种原因需要使用xml.Name
字段,我建议
使用私有字段,以便导出的结构版本不会混乱。