gorm中插入相同结构体定义不同的结果
在使用gorm进行数据插入时,可能会遇到插入失败的情况,即使是类似的结构体。
问题
当插入以下两个struct时,第一个成功,第二个失败:
type fileresult struct { name string size int64 } type insertfileinfo struct { fileresult fileresult } type insertfileinfo2 struct { fileinfo fileresult }
登录后复制
答案
第二种struct插入失败是因为它没有将fileinfo结构体嵌入到父structinsertfileinfo2中。要正确定义,需要添加embedded标签:
type InsertFileInfo2 struct { FileInfo FileResult `json:"file_inifo" gorm:"embedded"` }
登录后复制
两种定义的在于结构体定义方式不同。第一种直接将fileresult嵌套在insertfileinfo中,可以使用insertfileinfo直接访问fileresult的成员。
第二种定义方式需要先访问insertfileinfo2的成员fileinfo,再访问fileresult的成员。这种方式更加灵活,可以避免直接访问fileresult成员。
以上就是GORM 插入结构体失败:为何相同结构体定义却导致不同结果?的详细内容,更多请关注php中文网其它相关文章!