Golang 中的 json 与嵌套结构体
2022/4/20 6:16:26
本文主要是介绍Golang 中的 json 与嵌套结构体,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
go 中 Marshal 嵌套结构体的结果,与普通结构体所得的结果是不同的。
首先看看示例的结构体定义:
type Inner struct { Info string `json:"info"` } type Outer1 struct { Value Inner `json:"inner"` Title string `json:"title"` } type Outer2 struct { Value string `json:"inner"` Title string `json:"title"` }
Outer1
中用 Inner
类型存储变量 Value
,Outer2
中则是用 string
。
如果我们需要在两个结构体中嵌套 Inner
,那么它们的赋值方式是不一样的:
func main() { inner := Inner{Info: "this is b"} outer1 := Outer1{Title: "this is title", Value: inner} temp, _ := json.Marshal(inner) outer2 := Outer2{Title: "this is title", Value: string(temp)} res1, _ := json.Marshal(outer1) fmt.Println(string(res1)) res2, _ := json.Marshal(outer2) fmt.Println(string(res2)) }
输出结果如下:
{"b":{"info":"this is b"},"title":"this is title"} {"b":"{\"info\":\"this is b\"}","title":"this is title"}
对于这两种结构体,可以看出:
- 当对「内嵌的结构体」去 marshal 时,解出来的子结构体是不带转义的
- 对于「使用 string 保存,子结构体 marshal 后字符串」的,解出来的子结构体是自带转义的
这篇关于Golang 中的 json 与嵌套结构体的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-16Vue3资料:新手入门必读教程
- 2024-11-16Vue3资料:新手入门全面指南
- 2024-11-16Vue资料:新手入门完全指南
- 2024-11-16Vue项目实战:新手入门指南
- 2024-11-16React Hooks之useEffect案例详解
- 2024-11-16useRef案例详解:React中的useRef使用教程
- 2024-11-16React Hooks之useState案例详解
- 2024-11-16Vue入门指南:从零开始搭建第一个Vue项目
- 2024-11-16Vue3学习:新手入门教程与实践指南
- 2024-11-16Vue3学习:从入门到初级实战教程