Как мне заполнить и добавить вложенный массив в JSON с помощью golang?

#arrays #json #go

#массивы #json #Вперед

Вопрос:

Я пытаюсь научиться создавать и управлять JSON в этом формате на лету с помощью golang:

 { 
"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 := amp;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)) 
}
  

Спасибо за любую помощь.

Ответ №1:

Вместо определения 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 := amp;JSONDoc{}
res2B.NestedArray = []NestedArrayElem{
    {Address: Address{Street: "foo"}},
    {Phone: Phone{Cell: "bar"}},
}
MarshalIt(res2B)
  

Игровая площадка: https://play.golang.org/p/_euwT-TEWp .

Комментарии:

1. Спасибо Ainar-G, но, похоже, это имеет структуру «nestedarray»: [ { «address»: {«street»: «foo»}, «phone»: {«cell»: «»} }, { «address»: {«street»: «»}, «phone»: {«cell»: «bar»} } ]`

2. Айнар-Г, еще раз спасибо, я смог немного изменить ваш ответ, используя интерфейсы, и с вашей помощью я считаю, что я близок к решению. Последняя часть моей головоломки такова. Как мне добавить? play.golang.org/p/0i0t8O_KrN Спасибо!

3. @sneeze Вам здесь не нужны интерфейсы, достаточно указателей. Кроме того, при добавлении следует использовать значение, а не фрагмент. play.golang.org/p/hs4SGHSn7Q