我有这个功能: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, "", " ")
...
}
- 1 回答
- 0 关注
- 156 浏览
添加回答
举报
0/150
提交
取消