I want to use a different type to unmarshal the XML content of a child node based on its parent's name attribute.
In the following example I have 2 children nodes with attributes "apple" and "peach". I would like to use type Apple
when the attribute is "apple"
and Peach
when it's "peach"
. Basically Apple
and Peach
have very different structures, so that's the scenario. How would I accomplish that or what would be the suggested approach?
Here is the playground with a basic setup to the problem.
<element>
<node name="apple">
<apple>
<color>red<color>
</apple>
</node>
<node name="peach">
<peach>
<size>medium</size>
</peach>
</node>
</element>
var x = `...` // xml
type Element struct {
Nodes []struct{
Name string `xml:"name,attr"`
} `xml:"node"`
Apple Apple
Peach Peach
}
type Apple struct { // use this struct if name is "apple"
Color string
}
type Peach struct { // use this struct if name is "peach"
Size string
}
func main() {
e := Element{}
err := xml.Unmarshal([]byte(x), &e)
if err != nil {
panic(err)
}
fmt.Println(e.Apple.Color)
fmt.Println(e.Peach.Size
}