1
私は非整列化したい、次のXMLがあります。私はそれは、次の構造体に非整列化したいアンマーシャリングXML
<packaging>
<depth measurementUnitCode="MMT">1200</depth>
<height measurementUnitCode="MMT">1320</height>
</packaging>
を:
type Packaging struct {
Depth Depth `xml:"depth"`
Height Height `xml:"height"`
}
type Measurement struct {
UnitOfMeasure `xml:"measurementUnitCode,attr"`
Value float64 `xml:"???????"`
}
UnitOfMeasure
は大丈夫ですが、私はできませんどのように実際にはValue
を取得する方法を図。それ、どうやったら出来るの?