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 중국어 웹사이트의 기타 관련 기사를 참조하세요!