结构体嵌入

对于正常的结构体字段,你也可以通过标签 embedded 将其嵌入,例如

type Author struct { Name string Email string } type Blog struct { ID int Author Author `gorm:"embedded"` Upvotes int32 } // 等效于 type Blog struct { ID int64 Name string Email string Upvotes int32 }

  

原文地址:https://www.cnblogs.com/winyh/p/14860497.html