Scenario:
Consider the following is the JSON :
{ "Bangalore_City": "35_Temperature", "NewYork_City": "31_Temperature", "Copenhagen_City": "29_Temperature" }
If you notice, the data is structured in such a way that there is no hard-coded keys mentioning City
/Temperature
its basically just values.
Issue: I am not able to parse any JSON which is dynamic.
Question: Could anyone have found solution for this kind of JSON parsing? I tried go-simplejson, gabs & default encoding/json
but no luck.
Note: The above JSON is just for sample. And there are lot of applications which are using the current API, So I do not want to change how the data is structured. I mean I can't change to something as follows:
[{ "City_Name":"Bangalore", "Temperature": "35" },...]
Then I can define struct
type TempData struct { City_Name string Temperature string }
JObject class has parse method; it parses the JSON string and converts it into a Key-value dictionary object. In the following example, I have used “JObject. Parse” method and retrieved data using key. string jsonData = @"{ 'FirstName':'Jignesh', 'LastName':'Trivedi' }"; var details = JObject.
A dynamic JSON file will be created to store the array of JSON objects. Consider, we have a database named gfg, a table named userdata. Now, here is the PHP code to fetch data from database and store them into JSON file named gfgfuserdetails. json by converting them into an array of JSON objects.
DeserializeObject can throw several unexpected exceptions (JsonReaderException is the one that is usually expected). These are: ArgumentException.
You can unmarshal into a map[string]string
for example:
m := map[string]string{} err := json.Unmarshal([]byte(input), &m) if err != nil { panic(err) } fmt.Println(m)
Output (wrapped):
map[Bangalore_City:35_Temperature NewYork_City:31_Temperature Copenhagen_City:29_Temperature]
Try it on the Go Playground.
This way no matter what the keys or values are, you will have all pairs in a map
which you can print or loop over.
Also note that although your example contained only string
values, but if the value type is varying (e.g. string
, numbers etc.), you may use interface{}
for the value type, in which case your map would be of type map[string]interface{}
.
Also note that I created a library to easily work with such dynamic objects which may be a great help in these cases: github.com/icza/dyno
.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With