首頁  >  文章  >  後端開發  >  如何在 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