dsiuz86842 2018-04-04 14:37
浏览 40
已采纳

如何在golang中彼此转换相同的签名类型?

I want to convert from;

type MyType map[string]interface{}

to;

logrus.Fields // map[string]interface{}

My code is;

func newAction(data interface{}) { // data comes as 'MyType'
    df := data.(logrus.Fields)
}

I take this error;

interface conversion: interface {} is MyType, not logrus.Fields
  • 写回答

1条回答 默认 最新

  • douyinjiao9351 2018-04-04 14:40
    关注

    The question uses a type assertion. A type assertion asserts that an interface value is a specific type. It does not convert types.

    Use a conversion to convert between the types:

    var v1 MyType
    var v2 logrus.Fields
    
    v2 = logrus.Fields(v1)
    v1 = MyType(v2)
    

    If you have a function that can accept either type, use a type switch and then convert each specific type:

    func newAction(data interface{}) {
        var df logrus.Fields
        switch v := data.(type) {
        case logur.Fields:
            df = v
        case MyType:
            df = logrus.Fields(v)
        default:
            // handle error
        }
        ... do something with df
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 yolov8边框坐标
  • ¥15 matlab中使用gurobi时报错
  • ¥15 这个主板怎么能扩出一两个sata口
  • ¥15 不是,这到底错哪儿了😭
  • ¥15 2020长安杯与连接网探
  • ¥15 关于#matlab#的问题:在模糊控制器中选出线路信息,在simulink中根据线路信息生成速度时间目标曲线(初速度为20m/s,15秒后减为0的速度时间图像)我想问线路信息是什么
  • ¥15 banner广告展示设置多少时间不怎么会消耗用户价值
  • ¥16 mybatis的代理对象无法通过@Autowired装填
  • ¥15 可见光定位matlab仿真
  • ¥15 arduino 四自由度机械臂