您的位置 首页 知识分享

GORM 插入结构体失败:为何相同结构体定义却导致不同结果?

gorm中插入相同结构体定义不同的结果 在使用gorm进行数据插入时,可能会遇到插入失败的情况,即使是类似的结…

GORM 插入结构体失败:为何相同结构体定义却导致不同结果?

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中文网其它相关文章!

本文来自网络,不代表甲倪知识立场,转载请注明出处:http://www.spjiani.cn/wp/3941.html

作者: nijia

发表评论

您的电子邮箱地址不会被公开。

联系我们

联系我们

0898-88881688

在线咨询: QQ交谈

邮箱: email@wangzhan.com

工作时间:周一至周五,9:00-17:30,节假日休息

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

关注微博
返回顶部