我在设计我的模型时遇到了一些问题,因为我的模型包含一个切片并且我收到一个错误
flattening nested structs leads to a slice of slices
设计这样的东西的最佳方法是什么
我更喜欢改变我的设计
type Inner2 struct {
Y float64
inner3 []Inner3
}
type Inner3 struct {
Z bool
type Outer struct {
A int16
I []Inner2
相关分类