gpt4 book ai didi

arrays - 如何使用 golang 在 JSON 中填充和附加嵌套数组?

转载 作者:IT王子 更新时间:2023-10-29 02:13:06 31 4
gpt4 key购买 nike

我正在尝试学习如何使用 golang 以这种格式动态创建和操作 JSON:

{ 
"justanarray": [
"One",
"Two"
],
"nestedstring": {"name": {"first": "Dave"}},
"nestedarray": [
{"address": {"street": "Central"}},
{"phone": {"cell": "(012)-345-6789"}}
]
}

我可以创建和操作除嵌套数组之外的所有内容。

下面是一段代码。 https://play.golang.org/p/pxKX4IOE8v

package main 

import (
"fmt"
"encoding/json"
)





//############ Define Structs ################

//Top level of json doc
type JSONDoc struct {
JustArray []string `json:"justanarray"`
NestedString NestedString `json:"nestedstring"`
NestedArray []NestedArray `json:"nestedarray"`


}

//nested string
type NestedString struct {
Name Name `json:"name"`
}
type Name struct {
First string `json:"first"`
}

//Nested array
type NestedArray []struct {
Address Address `json:"address,omitempty"`
Phone Phone `json:"phone,omitempty"`
}
type Address struct {
Street string `json:"street"`
}
type Phone struct {
Cell string `json:"cell"`
}






func main() {

res2B := &JSONDoc{}
fmt.Println("I can create a skeleton json doc")
MarshalIt(res2B)

fmt.Println("\nI can set value of top level key that is an array.")
res2B.JustArray = []string{"One"}
MarshalIt(res2B)

fmt.Println("\nI can append this top level array.")
res2B.JustArray = append(res2B.JustArray, "Two")
MarshalIt(res2B)

fmt.Println("\nI can set value of a nested key.")
res2B.NestedString.Name.First = "Dave"
MarshalIt(res2B)


fmt.Println("\nHow in the heck do I populate, and append a nested array?")


}

func MarshalIt(res2B *JSONDoc){
res, _ := json.Marshal(res2B)
fmt.Println(string(res))
}

感谢您的帮助。

最佳答案

与其将 NestedArray 定义为一片匿名结构,不如在 JSONDoc 中重新定义它:

type JSONDoc struct {
JustArray []string `json:"justanarray"`
NestedString NestedString `json:"nestedstring"`
NestedArray []NestedArrayElem `json:"nestedarray"`
}

//Nested array
type NestedArrayElem struct {
Address Address `json:"address,omitempty"`
Phone Phone `json:"phone,omitempty"`
}

然后,您可以:

res2B := &JSONDoc{}
res2B.NestedArray = []NestedArrayElem{
{Address: Address{Street: "foo"}},
{Phone: Phone{Cell: "bar"}},
}
MarshalIt(res2B)

Playground :https://play.golang.org/p/_euwT-TEWp .

关于arrays - 如何使用 golang 在 JSON 中填充和附加嵌套数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39962222/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com