This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"encoding/json" | |
"fmt" | |
) | |
func main() { | |
b := []byte(`{"key":"value"}`) | |
var f interface{} | |
json.Unmarshal(b, &f) | |
myMap := f.(map[string]interface{}) | |
fmt.Println(myMap["key"]) | |
} |
how to do this for a nested data
b := []byte({"key":{"key1":"value"}}
)
Merci beaucoup
Thanks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks! It helped a lot