Golang:使用字符串作为键来解组json之后的最佳方法

时间:2016-03-30 04:43:23

标签: json go unmarshalling

我有json喜欢

{
  "api_type" : "abc",
  "api_name" : "xyz",
  "cities" : {
    "new_york" : {
        "lat":"40.730610",
        "long":"-73.935242"
    },
    "london" : {
        "lat":"51.508530",
        "long":"-0.076132"
    },
    "amsterdam" : {
        "lat":"52.379189",
        "long":"4.899431"
    }

    //cities can be multiple
  }
}

我可以使用以下结构来解组

type MyJsonName struct {
    APIName   string `json:"api_name"`
    APIType   string `json:"api_type"`
    Locations struct {
        Amsterdam struct {
            Lat  string `json:"lat"`
            Long string `json:"long"`
        } `json:"amsterdam"`
        London struct {
            Lat  string `json:"lat"`
            Long string `json:"long"`
        } `json:"london"`
        NewYork struct {
            Lat  string `json:"lat"`
            Long string `json:"long"`
        } `json:"new_york"`
    } `json:"locations"`
}

但是我的城市名称和数字在每个响应中会有所不同,这是解组这种类型的json的最佳方式,其中键可以是不同的字符串。

1 个答案:

答案 0 :(得分:7)

我会将locations设为地图(尽管你在JSON中将其称为cities):

type MyJsonName struct {
        APIName   string `json:"api_name"`
        APIType   string `json:"api_type"`
        Locations map[string]struct {
                Lat  string
                Long string
        } `json:"locations"`
}