將結(jié)構(gòu)的布爾字段編組為 XML 時,該選項對于大多數(shù)用途來說并不是很有用 — 在 Go 中是布爾變量的零值,并且正如預(yù)期的那樣,在封送處理時會忽略值為 false 的布爾字段。最常建議的解決方案似乎是使用指針,這些指針將允許指示是否存在值。以下是我對這個想法的基本實現(xiàn):,omitemptyfalse,omitemptypackage mainimport ( "encoding/xml" "fmt")type Person struct { XMLName xml.Name `xml:"person"` IsMarried *bool `xml:"married"` // Required field. IsRetired *bool `xml:"retired,omitempty"` // Optional field.}func boolPointer(b bool) *bool { return &b}func printPersonXml(person Person) { output, err := xml.MarshalIndent(person, " ", " ") if err != nil { fmt.Printf("error: %v\n", err) } else { fmt.Println(string(output)) }}func main() { person := Person{ IsMarried: boolPointer(true), IsRetired: nil, } printPersonXml(person)}這按預(yù)期工作并產(chǎn)生輸出 <person> <married>true</married> </person>但是,在這種情況下,選項似乎完全失去了意義。任何具有值的字段都不會包含在生成的 XML 代碼中。例如,如果我將 的內(nèi)容更改為,omitemptynilmain()person := Person{ IsMarried: nil, IsRetired: nil,}printPersonXml(person)輸出變?yōu)?nbsp; <person></person>即使我更喜歡 <person> <married></married> </person>如此處所述,這可能是預(yù)期的行為:“Marshal 通過封送處理指針所指向的值來處理指針,或者,如果指針為 nil,則不寫入任何內(nèi)容。但是,是否可以使用標準包裝實現(xiàn)我的首選行為?如果是,是否需要為其引入新類型和自定義方法?xmlMarshalXML()盡管出于顯而易見的原因,我在這里專注于布爾變量,但我也想將此方法擴展到其他基本類型的指針。
1 回答

蕭十郎
TA貢獻1815條經(jīng)驗 獲得超13個贊
“是否有可能使用標準xml包實現(xiàn)我的首選行為?如果是,是否需要為其引入新類型和自定義封送 /XML() 方法?-- 是的,是的。
例如:
type Bool struct {
Bool bool
IsValid bool
}
func (b Bool) MarshalXML(e *xml.Encoder, se xml.StartElement) error {
if b.IsValid {
return e.EncodeElement(b.Bool, se)
}
return e.EncodeElement("", se)
}
type OptionalBool struct {
Bool bool
IsValid bool
}
func (b OptionalBool) MarshalXML(e *xml.Encoder, se xml.StartElement) error {
if b.IsValid {
return e.EncodeElement(b.Bool, se)
}
return nil
}
https://play.golang.org/p/C2fuBfv69Ny
- 1 回答
- 0 關(guān)注
- 108 瀏覽
添加回答
舉報
0/150
提交
取消