[求助]结构体中有重复项目会丢失数据

fzxs · · 1209 次点击
https://golang.org/pkg/encoding/json/#Marshal 1) Of those fields, if any are JSON-tagged, only tagged fields are considered, even if there are multiple untagged fields that would otherwise conflict. 2) If there is exactly one field (tagged or not according to the first rule), that is selected. 3) Otherwise there are multiple fields, and all are ignored; no error occurs. 第三条
#2
更多评论
User 内嵌两个匿名结构体Person 和Student ,Person 和 Student 具有相同的字段Name,那么User的实例(user)是不能直接访问Name字段。你定义的类型属于成员名字冲突,必须通过user.Person.Name 或者user.Student.Name 才能具体确定属于谁 结构内嵌特性 1、内嵌的结构体可以直接访问其成员变量 2、内嵌结构体的字段名是它的类型名 要实现你的需求,可以在User添加Name字段
#1