gpt4 book ai didi

Golang 通过 JSON 标签获取结构体的字段名

转载 作者:IT王子 更新时间:2023-10-29 02:00:44 31 4
gpt4 key购买 nike

我有一个结构:

type Human struct {
Head string `json:"a1"`
Body string `json:"a2"`
Leg string `json:"a3"`
}

如何通过提供 JSON 标记名称来获取结构的字段名称?大概是这样的:

fmt.Println(getFieldName("a1")) // "Head"
fmt.Println(getFieldName("a2")) // "Body"
fmt.Println(getFieldName("a99")) // ""

func getFieldName(tag string) (fieldname string) {
/* ... */
}

我应该如何实现getFieldName 功能?我在网上看了看,看来我需要使用 reflect 包,嗯……有人帮忙吗? :)

最佳答案

您可以使用 reflect 包循环遍历结构的字段并匹配它们的标记值。

func getFieldName(tag, key string, s interface{}) (fieldname string) {
rt := reflect.TypeOf(s)
if rt.Kind() != reflect.Struct {
panic("bad type")
}
for i := 0; i < rt.NumField(); i++ {
f := rt.Field(i)
v := strings.Split(f.Tag.Get(key), ",")[0] // use split to ignore tag "options" like omitempty, etc.
if v == tag {
return f.Name
}
}
return ""
}

https://play.golang.com/p/2zCC7pZKJTz


或者,正如@icza 所指出的,您可以构建一个 map ,然后使用它进行更快的查找。

//                         Human            json       a1     Head
var fieldsByTag = make(map[reflect.Type]map[string]map[string]string)

func buildFieldsByTagMap(key string, s interface{}) {
rt := reflect.TypeOf(s)
if rt.Kind() != reflect.Struct {
panic("bad type")
}

if fieldsByTag[rt] == nil {
fieldsByTag[rt] = make(map[string]map[string]string)
}
if fieldsByTag[rt][key] == nil {
fieldsByTag[rt][key] = make(map[string]string)
}

for i := 0; i < rt.NumField(); i++ {
f := rt.Field(i)
v := strings.Split(f.Tag.Get(key), ",")[0] // use split to ignore tag "options"
if v == "" || v == "-" {
continue
}
fieldsByTag[rt][key][v] = f.Name
}
}

https://play.golang.com/p/qlt_mWsXGju

关于Golang 通过 JSON 标签获取结构体的字段名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55879028/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com