"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > How Can I Unmarshal JSON with a Dynamic Key in Go?

How Can I Unmarshal JSON with a Dynamic Key in Go?

Posted on 2025-02-11
Browse:425

How Can I Unmarshal JSON with a Dynamic Key in Go?

Dynamic Key Unmarshaling in JSON with Go

When working with JSON data, it can be challenging to unmarshal into a struct if one of the keys is dynamic and cannot be directly mapped to a field name in the struct. To address this, a practical solution can be found in Golang.

Given a defined struct:

type X struct {
  A string `json:"a_known_string"`
  B string `json:"b_known_string"`
}

And a sample JSON string:

{
  "any string": {
    "a_known_string": "some value",
    "b_known_string": "another value"
  }
}

To capture both the known and dynamic key in the JSON, a map can be utilized:

var m map[string]X
err := json.Unmarshal([]byte(jsnStr), &m)

This approach allows for the storage of multiple objects under a single dynamic key, providing flexibility in data handling.

An example playground can be found [here](https://play.golang.org/p/jh-GAlUEo7n).

Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3