ネストされた文字列を使用した 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) }
この更新されたコードでは、ManifestResponse.History 内の文字列フィールドとして V1CompatibilityRaw を宣言し、手動で V1Compatibility struct にアンマーシャリングします。
このアプローチにより、JSON 応答を目的の Go 構造体に適切に逆シリアル化でき、ネストされた文字列が確実に解析されます。正しく。
以上がGo でアンマーシャリングするときにネストされた JSON 文字列を処理するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。