在golang中,从struct手动创建json对象是一项常见的操作。通过将struct转换为json格式,我们可以方便地在网络传输或存储中使用。在本文中,php小编香蕉将向您介绍如何使用golang的内置包来实现这一功能。不仅如此,我们还将探讨如何处理struct中的嵌套字段以及如何处理特殊类型的字段。无论您是初学者还是有经验的开发者,本文都将为您提供详细的指导,帮助您轻松地在golang中创建json对象。让我们开始吧!
我有一个结构可以说
type Foo struct { A string `json:",omitemtpy" }
我知道我可以使用类似的东西轻松地将其转换为 json
json.Marshal(Foo{})
它将返回一个空的 json 字符串。
但我需要使用相同的结构返回结构的 json 表示形式,其中包含所有字段和 json 中存在的“空值”。 (实际上,它是一个非常大的结构,所以我不能只保留没有标签的副本)
最简单的方法是什么?
基本上,我需要创建一个忽略 json omitempty 标签的结构的 json 编组。
此 json 创建不需要高效或高性能。
我更希望有一个库可以用于此类任务,但我见过的大多数库要么创建一些特殊格式,要么尊重 omitempty
编辑:
选择 https://stackoverflow.com/a/77799949/2187510 作为我的答案,并进行一些额外的工作以允许默认值(使用其代码作为参考)
defaultFoo := FoodWithPts{ Str: "helloWorld"} dupFooType := dupType(reflect.TypeOf(defaultFoo)) foo := reflect.Zero(dupFooType).Interface() // New additions defaults, _ := json.Marshal(defaultFoo) json.Unmarshal(defaults, &foo) // overwrites foo with defaults // End New additions data, err := json.Marshal(foo) fmt.Println("dup FooWithPtrs:\n", string(data), err)
输出:
dup FooWithPtrs: {"String":"helloWorld","Int":0,"Bar":null}
您无法在运行时修改标签,但可以使用$$c 在运行时创建结构类型$$reflect.StructOf()。
因此,我们的想法是复制结构类型,但在重复中从 JSON 标记中排除,omitempty
,omitempty
选项。
您可以在Go Playground上找到以下所有示例。
这比人们一开始想象的要容易。我们只需要递归地执行(一个结构体字段可能是另一个结构体),并且我们绝对应该处理指针:
func dupType(t reflect.Type) reflect.Type { if t.Kind() == reflect.Pointer { return reflect.PointerTo(dupType(t.Elem())) } if t.Kind() != reflect.Struct { return t } var fields []reflect.StructField for i := 0; i < t.NumField(); i++ { sf := t.Field(i) sf.Type = dupType(sf.Type) // Keep json tag but cut ,omitempty option if exists: if tag, _ := strings.CutSuffix(sf.Tag.Get("json"), ",omitempty"); tag == "" { sf.Tag = "" } else { sf.Tag = `json:"` + reflect.StructTag(tag) + `"` } fields = append(fields, sf) } return reflect.StructOf(fields) }
让我们用这种类型来测试它:
type Foo struct { Str string `json:"String,omitempty"` Int int `json:",omitempty"` Bar struct { Float float64 `json:",omitempty"` PtrInt int `json:",omitempty"` Baz struct { X int `json:"XXXX,omitempty"` } `json:",omitempty"` } `json:",omitempty"` }
首先,这是没有类型重复的 JSON 输出:
data, err := json.Marshal(Foo{}) fmt.Println("Foo:\n", string(data), err)
输出:
Foo: {"Bar":{"Baz":{}}}
请注意,我们得到了Bar
Bar
和Baz
和Baz
让我们尝试类型复制:
dupFooType := dupType(reflect.TypeOf(Foo{})) foo := reflect.Zero(dupFooType).Interface() data, err := json.Marshal(foo) fmt.Println("dup Foo:\n", string(data), err)
dup Foo: {"String":"","Int":0,"Bar":{"Float":0,"PtrInt":0,"Baz":{"XXXX":0}}} <nil>
但我们还没有完成。如果我们有一个带有结构指针字段的类型怎么办?像这样:
type FooWithPtrs struct { Str string `json:"String,omitempty"` Int int `json:",omitempty"` Bar *struct { Float float64 `json:",omitempty"` PtrInt int `json:",omitempty"` Baz *struct { X int `json:"XXXX,omitempty"` } `json:",omitempty"` } `json:",omitempty"` }
dupFooType := dupType(reflect.TypeOf(FooWithPtrs{})) foo := reflect.Zero(dupFooType).Interface() data, err := json.Marshal(foo) fmt.Println("dup FooWithPtrs:\n", string(data), err)
dup FooWithPtrs: {"String":"","Int":0,"Bar":null} <nil>
null
,但我们也希望它们的字段也出现在输出中。这需要将它们初始化为非nil
如果结构包含指针,则这些指针在 JSON 输出中显示为null
,但我们也希望它们的字段也出现在输出中。这需要将它们初始化为非nil值,以便它们生成输出。
幸运的是,我们还可以使用反射来做到这一点:
func initPtrs(v reflect.Value) { if !v.CanAddr() { return } if v.Kind() == reflect.Pointer { v.Set(reflect.New(v.Type().Elem())) v = v.Elem() } if v.Kind() == reflect.Struct { for i := 0; i < v.NumField(); i++ { initPtrs(v.Field(i)) } } }
登录后复制
我们很兴奋!让我们看看实际效果:
dupFooType := dupType(reflect.TypeOf(FooWithPtrs{})) fooVal := reflect.New(dupFooType) initPtrs(fooVal.Elem()) data, err := json.Marshal(fooVal.Interface()) fmt.Println("dup and inited FooWithPtrs:\n", string(data), err)
登录后复制
输出:
dup and inited FooWithPtrs: {"String":"","Int":0,"Bar":{"Float":0,"PtrInt":0,"Baz":{"XXXX":0}}}
登录后复制
不错!它包含所有字段!以上是在golang中从struct手动创建json对象的详细内容。更多信息请关注PHP中文网其他相关文章!
相关标签:
来源:stackoverflow.com
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
-
2024-08-26 00:38:12
-
2024-08-26 00:35:12
-
2024-08-26 00:15:12
-
2024-08-26 00:13:12
-
2024-08-26 00:12:12
-
2024-08-26 00:11:12
-
2024-08-26 00:06:12
-
2024-08-26 00:01:12
-
2024-08-26 00:00:12
-
2024-08-25 21:48:12
最新问题
当 Flexbox 项目以列模式换行时,容器不会增加其宽度
我正在开发一个嵌套的Flexbox布局,其工作原理如下:最外层(ul#main)是一个水平列表,当添加更多项目时必须向右扩展。如果它变得太大,应该有一个水平滚动条。#main{di...
来自于 2023-10-17 22:05:01
0
2
176
Flexbox在子元素溢出时的行为有所不同
如果容器是flex并且item2有overflow,容器将渲染为期望的大小,并且溢出滚动条可见。.Flex_container{width:300px;height:100px;d...
来自于 2023-09-11 15:25:10
0
1
174
div溢出导致滚动行为异常
我有以下示例代码:body{overflow:hidden;}#content{height:200px;overflow-x:hidden;overflow-y:auto;out...
来自于 2023-09-10 13:50:38
0
1
277
热门教程
更多>
-
-
php入门教程之一周学会PHP
4208662
-
JAVA 初级入门视频教程
2360380
-
小甲鱼零基础入门学习Python视频教程
493777
-
PHP 零基础入门教程
827245