Golang : Decode/unmarshal unknown JSON data type with map[string]interface
This tutorial is courtesy of Rohan Allison on how to decode or unmarshal JSON into map[string]interface. There are times we only know in advance that the top-level keys are in string type and not the data type.
So how to handle the data type? Golang doesn't support generic yet. Aha! interface can handle the unknown data type.
Here you go!
package main
import "fmt"
import "encoding/json"
func main() {
// Given a possibly complex JSON object
msg := "{\"assets\" : {\"old\" : 123}}"
// We only know our top-level keys are strings
mp := make(map[string]interface{})
// Decode JSON into our map
err := json.Unmarshal([]byte(msg), &mp)
if err != nil {
println(err)
return
}
// See what the map has now
fmt.Printf("mp is now: %+v\n", mp)
// Iterate the map and print out the elements one by one
// Note: that mp has to be deferenced here or range will fail
for key, value := range mp {
fmt.Println("key:", key, "value:", value)
}
}
Output :
mp is now: map[assets:map[old:123]]
key: assets value: map[old:123]
https://play.golang.org/p/-aM7yokAHd
Happy coding! and once again thanks to Mr. Rohan Allison for the code example!
Reference :
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+8.2k Golang : HttpRouter multiplexer routing example
+21.1k Golang : Get password from console input without echo or masked
+7.1k Golang : Array mapping with Interface
+7.1k Javascript : How to get JSON data from another website with JQuery or Ajax ?
+11.1k Golang : Fix go.exe is not compatible with the version of Windows you're running
+14k Golang: Pad right or print ending(suffix) zero or spaces in fmt.Printf example
+19.2k Golang : Populate dropdown with html/template example
+7.5k Gogland : Single File versus Go Application Run Configurations
+24.6k Golang : How to print rune, unicode, utf-8 and non-ASCII CJK(Chinese/Japanese/Korean) characters?
+13.5k Golang : Read XML elements data with xml.CharData example
+17.9k Golang : Login and logout a user after password verification and redirect example