使用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中文網其他相關文章!