使用嵌套字符串解组 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中文网其他相关文章!