Tag
理解
Golang中可以对struct
定义Tag
例如:
type TestTag struct{ UserName string `json:"name"` Age Int `json:"age"`}
json:"name"
就是 UserName属性的tag。 我们可以在反射中获取Tag的内容。例如:
if ctx,ok := reflect.Typeof(TestTag{}).Elem().FieldByName("UserName");ok{ fmt.Println(ctx.Tag) }
Tag不仅可以当成注释来使用,还可以有更多使用地方。
使用
在解析json的时候可以利用到Tag,例如:
str :=`{"name":"test","age":18}` temp:= []byte(str) jsonObj :=new(TestTag) err :=json.Unmarshal(temp,&jsonObj) if err!=nil{ fmt.Println(err) return } fmt.Println(temp.UserName)
这可以通过tag的方式来进行对json解析。