第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

如何使用 gorm.Preload 修復(fù)模式錯(cuò)誤的不支持關(guān)系

如何使用 gorm.Preload 修復(fù)模式錯(cuò)誤的不支持關(guān)系

Go
森欄 2023-01-03 17:03:21
我不斷收到Technician: unsupported relations for schema Ticket此結(jié)構(gòu)模式和查詢的錯(cuò)誤消息?我該怎么做才能使這個(gè) Preload 查詢有效?或者至少如何調(diào)試這個(gè)問題?錯(cuò)誤非常少,我已經(jīng)閱讀了 gorm 預(yù)加載頁面https://gorm.io/docs/preload.html,但不明白我做錯(cuò)了什么?type Ticket struct {    ID                  uuid.UUID  `json:"id"`    CreatedAt           time.Time  `json:"createdAt"`    UpdatedAt           time.Time  `json:"updatedAt"`    ShopID              uuid.UUID  `json:"shopID"`    Archived            bool       `json:"archived"`    Services            []string   `json:"services"`    Price               int        `json:"price"`    Location            int        `json:"location"`    Checkedout          bool       `json:"checkedout"`    TechnicianID        uuid.UUID  `json:"technicianId"`    Technician          Technician `json:"technician"`    TechnicianPartnerID *uuid.UUID `json:"technicianPartnerId"`    LastUpdatedBy       uuid.UUID  `json:"lastupdatedBy"`}type Technician struct {    ID        uuid.UUID `json:"id"`    CreatedAt time.Time `json:"createdAt"`    UpdatedAt time.Time `json:"updatedAt"`    ShopID    uuid.UUID `json:"shopID"`    Name      string    `json:"name"`    Active    bool      `json:"active"`}dbQuery := t.Db.Orm.WithContext(ctx).Table("tickets").Preload("Technician")
查看完整描述

1 回答

?
心有法竹

TA貢獻(xiàn)1866條經(jīng)驗(yàn) 獲得超5個(gè)贊

您沒有使用標(biāo)準(zhǔn)的 gorm.Model 作為鍵(來自文檔):


type Model struct {

  ID        uint           `gorm:"primaryKey"`

  CreatedAt time.Time

  UpdatedAt time.Time

  DeletedAt gorm.DeletedAt `gorm:"index"`

}

Gorm 使用它來識(shí)別連接。


gorm:"primaryKey"使用指示器更改鍵應(yīng)該可以解決問題。


或者替代方案:使用 gorm.Model:


type Ticker struct {

    gorm.Model

    ShopID              uuid.UUID  `json:"shopID"`

    Archived            bool       `json:"archived"`

    Services            []string   `json:"services"`

    Price               int        `json:"price"`

    Location            int        `json:"location"`

    Checkedout          bool       `json:"checkedout"`

    TechnicianID        uuid.UUID  `json:"technicianId"`

    Technician          Technician `json:"technician"`

    TechnicianPartnerID *uuid.UUID `json:"technicianPartnerId"`

    LastUpdatedBy       uuid.UUID  `json:"lastupdatedBy"`

}


type Technician struct {

    gorm.Model

    ShopID    uuid.UUID `json:"shopID"`

    Name      string    `json:"name"`

    Active    bool      `json:"active"`

}


查看完整回答
反對 回復(fù) 2023-01-03
  • 1 回答
  • 0 關(guān)注
  • 207 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)