我在 golang 中有两个结构如下
type Data struct {
Name string
Description string
HasMore bool
}
type DataWithItems struct {
Name string
Description string
HasMore bool
Items []Items
}
至多DataWithItemsstruct 可以重写为
type DataWithItems struct {
Info Data
Items []Items
}
但是上面的内容使得将 json 对象解码为DataWithItems. 我知道这可以通过其他编程语言的继承来解决,但是Is there a way I can solve this in Go?
桃花长相依
Qyouu
相关分类