Golang : How to get struct tag and use field name to retrieve data?
Problem :
A structure data field can have additional information or meta-data. This information is known as struct tag in Golang. You want to find out a struct data field type's struct tag. How to that with the reflect
package?
NOTE : Don't confuse field name and struct tag yeah!
Solution :
Use the reflect package StructField type to retrieve the data.
Here you go !
package main
import (
"fmt"
"reflect"
)
type Person struct {
Name string `json:name`
}
func getStructTag(f reflect.StructField) string {
return string(f.Tag)
}
func main() {
user := &Person{"Adam"}
field, ok := reflect.TypeOf(user).Elem().FieldByName("Name") // not json:name
if !ok {
panic("Field not found")
}
// get the struct field tag
// see http://golang.org/pkg/reflect/#StructField
fmt.Println(getStructTag(field)) // json:name
//----- get data from the initialized Person struct
//----- based on the field name
r := reflect.ValueOf(user)
f := reflect.Indirect(r).FieldByName("Name")
fmt.Println(f)
}
Output :
json:name
Adam
Happy coding !
References :
See also : Golang : How to get struct field and value by name
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
+11k Golang : How to pipe input data to executing child process?
+52k Golang : How to get struct field and value by name
+13.2k Golang : Get user input until a command or receive a word to stop
+31.9k Golang : Math pow(the power of x^y) example
+19.9k Golang : Count number of digits from given integer value
+8.5k Golang : Find duplicate files with filepath.Walk
+18.3k Golang : Write file with io.WriteString
+29.1k Golang : How to create new XML file ?
+13.6k Golang : convert(cast) string to float value
+5.1k Golang : How to deal with configuration data?
+15k Golang : Get timezone offset from date or timestamp
+27.5k Golang : Decode/unmarshal unknown JSON data type with map[string]interface