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 matlab有关常微分方程的问题求解决
  • ¥15 perl MISA分析p3_in脚本出错
  • ¥15 k8s部署jupyterlab,jupyterlab保存不了文件
  • ¥15 ubuntu虚拟机打包apk错误
  • ¥199 rust编程架构设计的方案 有偿
  • ¥15 回答4f系统的像差计算
  • ¥15 java如何提取出pdf里的文字?
  • ¥100 求三轴之间相互配合画圆以及直线的算法
  • ¥100 c语言,请帮蒟蒻写一个题的范例作参考
  • ¥15 名为“Product”的列已属于此 DataTable