Struct Tag 相信大家都用过结构体的标签功能吧,特别是生成Json串会经常用到。 样例程序 请看下面这一段程序,这里使用反射,通过用 FieldByName(“Name”) 获得结构体的Name 字段。然后使用 .Tag.Get(“format”) 取得标签。 type Employee struct{ EmployeeID string Name string `format: normal` Age int } func TestInvokeByName(t *testing.T){ e := &Employee{1,Terry,20} if nameFiel