Go 中使用映射进行动态 JSON 映射
在 Go 中,使用不可预测的键映射动态 JSON 响应可能是一个挑战。然而,利用地图提供了一种灵活的解决方案。
考虑以下 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 }] } } ] }
要捕获这种动态性质,请创建一个基于地图的结构。 Go 中的映射允许任意键和值,这使得它们非常适合这种情况。
type Items map[string][]ImageURL
这里,Items 结构是一个带有字符串键(代表不同的 JSON 键)和类型 [] 的值的映射。 ImageURL。
要使用此结构,请为各个图像条目定义 ImageURL 结构:
type ImageURL struct { URL string Width int Height int }
现在,您可以将 JSON 响应直接解组到 Items 结构中:
err := json.Unmarshal(data, &items) if err != nil { // Handle error }
此方法为动态 JSON 响应提供灵活的映射,允许您捕获数据,而无需预定义所有可能的键。
以上是如何在 Go 中有效处理具有不可预测键的动态 JSON 响应?的详细内容。更多信息请关注PHP中文网其他相关文章!