Last active
September 1, 2020 12:18
-
-
Save irshadhasmat/76f2f20e4f9242962a5618701133675b to your computer and use it in GitHub Desktop.
This file contains hidden or 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() { | |
//Simple Employee JSON which we will parse | |
empArray := `[ | |
{ | |
"id": 1, | |
"name": "Mr. Boss", | |
"department": "", | |
"designation": "Director" | |
}, | |
{ | |
"id": 11, | |
"name": "Irshad", | |
"department": "IT", | |
"designation": "Product Manager" | |
}, | |
{ | |
"id": 12, | |
"name": "Pankaj", | |
"department": "IT", | |
"designation": "Team Lead" | |
} | |
]` | |
// Declared an empty interface of type Array | |
var results []map[string]interface{} | |
// Unmarshal or Decode the JSON to the interface. | |
json.Unmarshal([]byte(empArray), &results) | |
for key, result := range results { | |
fmt.Println("Reading Value for Key :", key) | |
//Reading each value by its key | |
fmt.Println("Id :", result["id"], | |
"- Name :", result["name"], | |
"- Department :", result["department"], | |
"- Designation :", result["designation"]) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment