dtr84664 2019-04-27 09:22 采纳率: 100%
浏览 421
已采纳

Golang通过JSON标记获取结构的字段名称

I have a struct:

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

How can I get the struct's field name by providing JSON tag name? Probably something like this:

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

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

How should I implement the getFieldName function? I read online, it seems I need to use the reflect package, hmmm... any helping hand? :)

  • 写回答

1条回答 默认 最新

  • duanaoou4105 2019-04-30 13:53
    关注

    You can use the reflect package to loop over a struct's fields and match against their tag values.

    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


    Alternatively, as pointed out by @icza, you can build up a map and then use that for quicker lookups.

    //                         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

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 2024-五一综合模拟赛
  • ¥15 下图接收小电路,谁知道原理
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度
  • ¥30 关于#r语言#的问题:如何对R语言中mfgarch包中构建的garch-midas模型进行样本内长期波动率预测和样本外长期波动率预测
  • ¥15 ETLCloud 处理json多层级问题
  • ¥15 matlab中使用gurobi时报错
  • ¥15 这个主板怎么能扩出一两个sata口
  • ¥15 不是,这到底错哪儿了😭