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

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

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

Go
Qyouu 2021-11-01 16:13:21
我有这个功能:func functionX(collection []*interface{}) {    ...    response, err := json.MarshalIndent(collection, "", "  ")    ...}我希望集合参数允许任何类型的数组,这就是为什么我尝试使用*interface{}但我收到如下错误:cannot use MyDataType (type []*model.MyDataType) as type []*interface {} in argument to middleware.functionX
查看完整描述

1 回答

?
九州编程

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

你不能那样做,但是你可以很容易地做到这一点:


func functionX(collection interface{}) error {

    ...

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

    ...

}


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

添加回答

举报

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