douxiangui5011 2016-10-10 16:00
浏览 246
已采纳

如何使用golang在JSON中填充并添加嵌套数组?

I am trying to learn how to create and manipulate JSON in this format on the fly using golang:

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

I can create and manipulate everything but the nested array.

Here is a play for the code below. 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("
I can set value of top level key that is an array.") 
        res2B.JustArray = []string{"One"} 
    MarshalIt(res2B)    

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

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


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


} 

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

Thanks for any help.

  • 写回答

1条回答 默认 最新

  • drxm5014 2016-10-10 16:07
    关注

    Instead of defining NestedArray as a slice of anonymous structs, it's better to redefine it in JSONDoc as such:

    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"`
    }
    

    Then, you can do:

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

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

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵