golang中负责解析函数
func Unmarshal(data []byte,v interface{}) error
只能对struct,slice和string进行解析
func Marshal(v interface{}) ([]byte,error)marshal可以处理指针指向的值,若指针为nil,则不会写入到xml中.
我们可以在定义解析的struct结构时,将元素的类型定义为指针类型,若解析时不存在该元素,则在marshal时不会生成空的元素.
type ObjectInfo struct { // attr ObjectType string `xml:"ObjectType,attr"` Id string `xml:"Id,attr"` Name string `xml:"Name,attr"` CreationDate string //`xml:"CreationDate"` // struct tag is not necessary // tag Tag []TagInfo `xml:"TagCollection>Tag"` // ColorValues RefSpecData *ReflectanceSpectrumInfo `xml:"ColorValues>ReflectanceSpectrum"` ColorLabData *ColorCIELabInfo `xml:"ColorValues>ColorCIELab"` ColorDensityData *ColorDensityInfo `xml:"ColorValues>ColorDensity"` //ColorValues PrintDataInterface `xml:",innerxml"` // DeviceColorValues ColorCMYKPlusNData *ColorCMYKPlusNInfo `xml:"DeviceColorValues>ColorCMYKPlusN"` ColorCMYKData *ColorCMYKInfo `xml:"DeviceColorValues>ColorCMYK"` //DeviceColorValues PrintDataInterface `xml:",innerxml"` }上面结构是在解析CxF定义的结构,扫描后生成的数据类型是不确定的,但又是固定的几组结构,指针类型能很好的解决这个问题. 原文链接:https://www.f2er.com/go/188053.html