首页  >  文章  >  后端开发  >  如何在 GORM 中将一个结构嵌入到另一个结构中并将其作为字段存储在主表中?

如何在 GORM 中将一个结构嵌入到另一个结构中并将其作为字段存储在主表中?

Barbara Streisand
Barbara Streisand原创
2024-11-03 03:20:03910浏览

How do I embed a struct within another struct in GORM and store it as a field in the main table?

使用 GORM 嵌入结构

在 GORM 中,当将一个结构嵌入到另一个结构中时,GORM 可能会为嵌入的结构创建一个单独的表。但是,如果您希望将嵌入结构存储为主表中的附加字段,可以使用以下方法:

解决方案:

  1. 定义嵌入式结构:
<code class="go">type A struct {
    Point *GeoPoint
}

type GeoPoint struct {
    Lat float64
    Lon float64
}</code>
  1. 为嵌入式结构实现 sql.Scanner 和 driver.Valuer 接口:
<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>
  1. 更新GORM 模型使用带有 gorm:"column" 和 gorm:"type" 标签的嵌入结构:
<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中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn