英文:
GoLang JSON Marshal omitempty with non-simple types - possible to avoid pointers?
问题
下面是解释的代码。我能够使非简单类型的omitempty与指针类型一起工作,这是唯一的方法。
是否有不使用指针的替代解决方案?
不工作的代码:
type Foo struct {
Bar Bar `json:"bar,omitempty"`
}
type Bar struct {
Baz string `json:"baz"`
}
func main() {
foo := Foo{}
jsonBytes, _ := json.Marshal(foo)
fmt.Printf("%s\n", jsonBytes)
}
输出:{"bar":{"baz":""}}
工作的代码,但不是我想要的:
type Foo struct {
Bar *Bar `json:"bar,omitempty"`
}
type Bar struct {
Baz string `json:"baz"`
}
func main() {
foo := Foo{}
jsonBytes, _ := json.Marshal(foo)
fmt.Printf("%s\n", jsonBytes)
}
输出:{}
英文:
Code below is the explanation. The only way I can get omitempty to work with non-simple types is to make that type a pointer.
Is there an alternative solution to this by not using pointers?
CODE NOT WORKING:
type Foo struct {
Bar Bar `json:"bar,omitempty"`
}
type Bar struct {
Baz string `json:"baz"`
}
func main() {
foo := Foo{}
jsonBytes, _ := json.Marshal(foo)
fmt.Printf("%s\n", jsonBytes)
}
OUTPUT: {"bar":{"baz":""}}
CODE WORKING, BUT NOT WHAT I WANT:
type Foo struct {
Bar *Bar `json:"bar,omitempty"`
}
type Bar struct {
Baz string `json:"baz"`
}
func main() {
foo := Foo{}
jsonBytes, _ := json.Marshal(foo)
fmt.Printf("%s\n", jsonBytes)
}
OUTPUT: {}
答案1
得分: 1
有没有不使用指针的替代解决方案?
没有。
英文:
> Is there an alternative solution to this by not using pointers?
No.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论