解析嵌套的JSON结构

huangapple go评论80阅读模式
英文:

Unmarshal nested JSON structure

问题

我正在尝试解码以下字符串,但只得到空值。

在Go中,如何解码嵌套的JSON结构?

我想将以下内容转换为映射数据结构。

package main

import (
  "encoding/json"
  "fmt"
)

func main() {
  jStr := `
{
    "AAA": {
        "assdfdff": ["asdf"],
        "fdsfa": ["1231", "123"]
    }
}
`
  type Container struct {
    Key string `json:"AAA"`
  }
  var cont Container

  json.Unmarshal([]byte(jStr), &cont)
  fmt.Println(cont)
}

请注意,这是一个Go语言代码示例,用于解码嵌套的JSON结构并将其转换为映射数据结构。

英文:

http://play.golang.org/p/f6ilWnWTjm

I am trying to decode the following string but only getting null values.

How do I decode nested JSON structure in Go?

I want to convert the following to map data structure.

package main

import (
  "encoding/json"
  "fmt"
)

func main() {
  jStr := `
{
    "AAA": {
        "assdfdff": ["asdf"],
        "fdsfa": ["1231", "123"]
    }
}
`
  type Container struct {
    Key string `json:"AAA"`
  }
  var cont Container

  json.Unmarshal([]byte(jStr), &cont)
  fmt.Println(cont)
}

答案1

得分: 24

使用Go中的嵌套结构来匹配JSON中的嵌套结构。

以下是处理示例JSON的一个示例:

package main

import (
    "encoding/json"
    "fmt"
    "log"
)

func main() {
    jStr := `
    {
        "AAA": {
            "assdfdff": ["asdf"],
            "fdsfa": ["1231", "123"]
        }
    }
    `

    type Inner struct {
        Key2 []string `json:"assdfdff"`
        Key3 []string `json:"fdsfa"`
    }
    type Container struct {
        Key Inner `json:"AAA"`
    }
    var cont Container
    if err := json.Unmarshal([]byte(jStr), &cont); err != nil {
        log.Fatal(err)
    }
    fmt.Printf("%+v\n", cont)
}

playground链接

你也可以在内部结构中使用匿名类型:

type Container struct {
    Key struct {
        Key2 []string `json:"assdfdff"`
        Key3 []string `json:"fdsfa"`
    }  `json:"AAA"`
}

playground链接

或者同时使用外部和内部结构:

var cont struct {
    Key struct {
        Key2 []string `json:"assdfdff"`
        Key3 []string `json:"fdsfa"`
    } `json:"AAA"`
}

playground链接

如果你不知道内部结构中的字段名,则可以使用map:

type Container struct {
    Key map[string][]string `json:"AAA"`
}

playground链接

还有更多选项。希望这能帮助你找到正确的方法。

英文:

Use nested structs in Go to match the nested structure in JSON.

Here's one example of how to handle your example JSON:

package main

import (
    "encoding/json"
    "fmt"
    "log"
)

func main() {
    jStr := `
    {
        "AAA": {
            "assdfdff": ["asdf"],
            "fdsfa": ["1231", "123"]
        }
    }
    `

    type Inner struct {
        Key2 []string `json:"assdfdff"`
        Key3 []string `json:"fdsfa"`
    }
    type Container struct {
        Key Inner `json:"AAA"`
    }
    var cont Container
    if err := json.Unmarshal([]byte(jStr), &cont); err != nil {
        log.Fatal(err)
    }
    fmt.Printf("%+v\n", cont)
}

playground link

You can also use an anonymous type for the inner struct:

type Container struct {
    Key struct {
	    Key2 []string `json:"assdfdff"`
	    Key3 []string `json:"fdsfa"`
    }  `json:"AAA"`
}

playground link

or both the outer and inner structs:

var cont struct {
	Key struct {
		Key2 []string `json:"assdfdff"`
		Key3 []string `json:"fdsfa"`
	} `json:"AAA"`
}

playground link

If you don't know the field names in the inner structure, then use a map:

type Container struct {
	Key map[string][]string `json:"AAA"`
}

http://play.golang.org/p/gwugHlCPLK

There are more options. Hopefully this gets you on the right track.

答案2

得分: 6

首先:除非你有非常充分的理由,否则不要忽略函数或方法返回的错误。

如果你对代码进行以下更改:

err := json.Unmarshal([]byte(jStr), &cont)
if err != nil {
    fmt.Println(err)
}

你将会看到错误信息,告诉你为什么值是空的:

json: 无法将对象解组为类型为字符串的Go值

简单来说:Key 不能是 string 类型,所以你必须使用不同的类型。根据 Key 值的特性,你有几种解码选项:

  • 如果结构是静态的,使用另一个结构来匹配这个结构。
  • 如果结构是动态的,使用 interface{}(或者如果它始终是 JSON 对象类型,则使用 map[string]interface{})。
  • 如果值不需要被访问,只需要在稍后进行 JSON 编码时使用,或者如果解码需要延迟进行,使用 json.RawMessage
英文:

First of all: Don't ignore errors returned by a function or method unless you have a very good reason to do so.

If you make the following change to the code:

err := json.Unmarshal([]byte(jStr), &cont)
if err != nil {
	fmt.Println(err)
}

You will see the error message telling you why the value is empty:

>json: cannot unmarshal object into Go value of type string

Simply put: Key cannot be of type string, so you have to use a different type. You have several option on how to decode it depending on the characteristics of the Key value:

  • If the structure is static, use another struct to match this structure.
  • If the structure is dynamic, use interface{} (or map[string]interface{} if it is always of type JSON object)
  • If the value is not to be accessed, only to be used in later JSON encoding, or if the decoding is to be delayed, use json.RawMessage

huangapple
  • 本文由 发表于 2014年9月22日 12:09:11
  • 转载请务必保留本文链接:https://go.coder-hub.com/25966567.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定