假设我有以下两个结构
type Struct1 struct {
name string
details interface{}
}
type AddressDetails struct {
street string
}
type StructDetails struct {
Struct1
details AddressDetails
}
我得到 JSON 格式的输入并将其转换为Struct1. 现在是否可以将其转换为StructDetailsgolang 而无需再次编组和解组?我试过这个,但我得到一个错误
翻过高山走不出你
侃侃尔雅
相关分类