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"}
对于这两种结构体,可以看出: