在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中文網其他相關文章!