使用巢狀字串解組JSON
當遇到「無法將字串解組到Go 結構欄位」的錯誤時,表示JSON 正在parsed 包含預期為結構體的欄位中的字串值。要解決此問題,請考慮以下方法:
import ( "encoding/json" "fmt" "log" ) type ManifestResponse struct { Name string `json:"name"` Tag string `json:"tag"` Architecture string `json:"architecture"` FsLayers []struct { BlobSum string `json:"blobSum"` } `json:"fsLayers"` History []struct { V1CompatibilityRaw string `json:"v1Compatibility"` V1Compatibility V1Compatibility } `json:"history"` } type V1Compatibility struct { ID string `json:"id"` Parent string `json:"parent"` Created string `json:"created"` } func main() { exemplar := `{ "schemaVersion": 1, "name": "library/redis", "tag": "latest", "architecture": "amd64", "history": [ { "v1Compatibility": "{\"id\":\"ef8a93741134ad37c834c32836aefbd455ad4aa4d1b6a6402e4186dfc1feeb88\",\"parent\":\"9c8b347e3807201285053a5413109b4235cca7d0b35e7e6b36554995cfd59820\",\"created\":\"2017-10-10T02:53:19.011435683Z\"}" } ] } ` var jsonManResp ManifestResponse if err := json.Unmarshal([]byte(exemplar), &jsonManResp); err != nil { log.Fatal(err) } for i := range jsonManResp.History { var comp V1Compatibility if err := json.Unmarshal([]byte(jsonManResp.History[i].V1CompatibilityRaw), &comp); err != nil { log.Fatal(err) } jsonManResp.History[i].V1Compatibility = comp } fmt.Println(jsonManResp) }
在此更新的程式碼中,我們將V1CompatibilityRaw 宣告為ManifestResponse.History 中的字串字段,然後手動將其解組到V1Compatibility 結構中。
這種方法允許將 JSON 回應正確反序列化為所需的 Go 結構,確保解析巢狀字串正確。
以上是在 Go 中解組時如何處理嵌套的 JSON 字串?的詳細內容。更多資訊請關注PHP中文網其他相關文章!