使用 GORM 嵌入结构
在 GORM 中,当将一个结构嵌入到另一个结构中时,GORM 可能会为嵌入的结构创建一个单独的表。但是,如果您希望将嵌入结构存储为主表中的附加字段,可以使用以下方法:
解决方案:
<code class="go">type A struct { Point *GeoPoint } type GeoPoint struct { Lat float64 Lon float64 }</code>
<code class="go">func (gp *GeoPoint) Scan(src interface{}) error { // Convert the `src` value to a byte array. b, ok := src.([]byte) if !ok { return fmt.Errorf("could not convert to byte array") } // Unmarshal the byte array into the `GeoPoint` struct. if err := json.Unmarshal(b, gp); err != nil { return fmt.Errorf("could not unmarshal JSON: %v", err) } return nil } func (gp GeoPoint) Value() (driver.Value, error) { // Marshal the `GeoPoint` struct into a byte array. b, err := json.Marshal(gp) if err != nil { return nil, fmt.Errorf("could not marshal JSON: %v", err) } return string(b), nil }</code>
<code class="go">type A struct { gorm.Model Point *GeoPoint `gorm:"column:point;type:json"` }</code>
通过实现 Scan 和 Value 方法,GORM 可以将嵌入结构转换为以及 JSON 格式。 gorm:"column" 和 gorm:"type" 标签指定主表中嵌入结构的列名称和数据类型。
以上是如何在 GORM 中将一个结构嵌入到另一个结构中并将其作为字段存储在主表中?的详细内容。更多信息请关注PHP中文网其他相关文章!