13

我正在尝试编写一个可以处理这样的 json 响应的结构类型

{"items":
[{"name": "thing",
  "image_urls": {
    "50x100": [{
      "url": "http://site.com/images/1/50x100.jpg",
      "width": 50,
      "height": 100
    }, {
      "url": "http://site.com/images/2/50x100.jpg",
      "width": 50,
      "height": 100
    }],
    "200x300": [{
      "url": "http://site.com/images/1/200x300.jpg",
      "width": 200,
      "height": 300
    }],
    "400x520": [{
      "url": "http://site.com/images/1/400x520.jpg",
      "width": 400,
      "height": 520
    }]
  }
}

由于键每次都不相同......不同的响应可能有或多或少的键,不同的键,正如您所见,使用 50x100 返回特定尺寸的多个图像如何创建与此匹配的结构?

我可以这样做:

type ImageURL struct {
    Url string
    Width, Height int
}

对于单个项目,以及特定键的列表。但是包含结构看起来如何?

就像是:

type Images struct {
    50x100 []ImageURL
    ...
}
type Items struct {
    name string
    Image_Urls []Images
}

可能有效,但我无法列举所有可能的图像尺寸响应。最后的 Image_Urls 也没有真正的列表。如果可能的话,我希望能够将它直接转储到 json.Unmarshal 中。

4

1 回答 1

15

你的 json 在我看来更像是一张地图。

type Items map[string][]ImageUrl

应该做你想做的。

于 2013-04-04T18:06:33.713 回答