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

如何使用运行时定义的类型更新函数中接口的值?

如何使用运行时定义的类型更新函数中接口的值?

Go
波斯汪 2022-09-19 17:44:51
假设我有一个结构用户type User struct {    Name     string `owm:"newNameFromAPI"`}下面的代码初始化结构并将其传递给函数func main() {       dest := User{        Name: "Sebastien",    }        deepUpdate(dest, "owm")}该函数使用反射来迭代结构的所有字段并相应地更新它们(为清楚起见,删除了几个代码块)func deepUpdate(destinationInterface interface{}, selector string) {    // Here I'm not supposed to know that the type is `User`    // And if I just use dest := destinationInterface, the value won't update    dest := destinationInterface.(User)    // Pointer to struct - addressable    destVal := reflect.ValueOf(&dest)    destType := reflect.TypeOf(&dest)    // psindirect := reflect.Indirect(destVal) // ? ValueOf(<Ptr Value>) Requires to be adressed via reflect.Indirect() to access Field - https://stackoverflow.com/a/50098755/9077800    // Struct    destValElem := destVal.Elem()    destTypeElem := destType.Elem()    // Iterate over all fields of the struct    for i := 0; i < destValElem.NumField(); i++ {        // // for i := 0; i < destTypeElem.NumField(); i++ {        destValField := destValElem.Field(i)        destTypeField := destTypeElem.Field(i)        switch destValField.Kind() {        // Field is a struct        case reflect.Struct:            // Recursion            fmt.Println("IS A STRUCT")        default:            // Get the complete tag            tag := destTypeField.Tag            if len(tag) == 0 {                continue            }            // Get the value of our custom tag key            tagVal := tag.Get(selector)            if len(tagVal) == 0 {                continue            }           }问题是以下行,因为我不应该知道要将 转换为 .destinationInterfaceUser如何将接口动态转换为在运行时定义的某个未知类型,或者以任何其他方式获取更新的“John”而不是“Sebastien”的相同输出?Namedest := destinationInterface.(User)这是在戈朗游戏狗上运行的完整代码https://play.golang.org/p/sYvz-Fwp97P
查看完整描述

1 回答

?
至尊宝的传说

TA贡献1789条经验 获得超10个赞

您不必知道 .该示例不是递归的,但可以轻松升级。dest


package main


import (

    "fmt"

    "reflect"

)


type User struct {

    Name string `owm:"newNameFromAPI"`

}


func main() {

    dest := User{

        Name: "Sebastien",

    }


    fmt.Println("Before:", dest.Name)

    deepUpdate(&dest, "owm")

    fmt.Println("After:", dest.Name)

}


func deepUpdate(dest interface{}, selector string) {

    //Get the reflect value of dest

    rv := reflect.ValueOf(dest)

    //Dereference every pointers

    for rv.Kind() == reflect.Ptr {

        rv = reflect.Indirect(rv)

    }


    //Check if its a struct, should use panic or return error

    if reflect.TypeOf(rv.Interface()).Kind() != reflect.Struct {

        fmt.Println("NOT A STRUCT")

        return

    }


    //Loop over the fields

    for i := 0; i < rv.NumField(); i++ {

        //Get the tag value

        tag := rv.Type().Field(i).Tag.Get(selector)

        if tag == "" {

            continue

        }


        //Get the source

        sourceValue := "John"


        //Assign the source to the dest's corresponding field

        if rv.Field(i).CanSet() {

            rv.Field(i).Set(reflect.ValueOf(sourceValue))

        }

    }

}

唯一的问题是,您必须使用与相应字段相同的类型。sourceValue


工作示例:https://goplay.space/#D0CmTaS5AiP


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

添加回答

举报

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