GO 函数参数中数组的通用类型

我有这个功能:


func functionX(collection []*interface{}) {

    ...

    response, err := json.MarshalIndent(collection, "", "  ")

    ...

}

我希望集合参数允许任何类型的数组,这就是为什么我尝试使用*interface{}但我收到如下错误:


cannot use MyDataType (type []*model.MyDataType) as type []*interface {} in argument to middleware.functionX



Qyouu
浏览 157回答 1
1回答

九州编程

你不能那样做,但是你可以很容易地做到这一点:func functionX(collection interface{}) error {    ...    response, err := json.MarshalIndent(collection, "", "  ")    ...}
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go