为了账号安全,请及时绑定邮箱和手机立即绑定

go中将字符串映射到UUID

go中将字符串映射到UUID

Go
不负相思意 2022-11-08 14:51:56
我正在使用mitchellh/mapstructure映射从map[string]interface{}到struct有没有办法告诉mapstructure转换string为uuid.UUID?map[string]interface{}:{    "id": "af7926b1-98eb-4c96-a2ba-7e429085b2ad",    "title": "new title",}structpackage entitiesimport (    "github.com/google/uuid")type Post struct {    Id      uuid.UUID  `json:"id"`    Title   string     `json:"title"`}
查看完整描述

1 回答

?
慕标5832272

TA贡献1966条经验 获得超4个赞

您可以添加一个DecodeHookFunc:


func decode(input, output interface{}) error {

    config := &mapstructure.DecoderConfig{

        DecodeHook: mapstructure.ComposeDecodeHookFunc(

            stringToUUIDHookFunc(),

        ),

        Result: &output,

    }


    decoder, err := mapstructure.NewDecoder(config)

    if err != nil {

        return err

    }


    return decoder.Decode(input)

}


func stringToUUIDHookFunc() mapstructure.DecodeHookFunc {

    return func(f reflect.Type, t reflect.Type, data interface{}) (interface{}, error) {

        if f.Kind() != reflect.String {

            return data, nil

        }

        if t != reflect.TypeOf(uuid.UUID{}) {

            return data, nil

        }


        return uuid.Parse(data.(string))

    }

}


查看完整回答
反对 回复 2022-11-08
  • 1 回答
  • 0 关注
  • 122 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信