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

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

gorm Many2many 和關(guān)聯(lián)表中的附加字段

gorm Many2many 和關(guān)聯(lián)表中的附加字段

Go
翻閱古今 2023-07-17 14:48:32
我有一個(gè)多對(duì)多關(guān)聯(lián)(它用于返回 JSON)。它在模型中聲明:// models/school.gotype School struct {    ID                int      `gorm:"primary_key"`    Name              string `gorm:"not null"`    Accreditations    []Accreditation `gorm:"many2many:school_accreditation;"` }效果很好。我在 json 中返回了關(guān)聯(lián)。問題是我的school_accreditation表中有一個(gè)附加字段,但它未包含在響應(yīng)中。我試圖為該協(xié)會(huì)聲明一個(gè)模型,就像這個(gè)答案中提出的那樣:// models/schoolAccreditation.gopackage modelsimport "time"// many to manytype SchoolAccreditation struct {    StartedAt time.Time `gorm:"not null"`}但到目前為止還不起作用。是否需要聲明一些額外的配置?還是要修改?
查看完整描述

1 回答

?
滄海一幻覺

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

回答自己,我將鏈接模型中的字段添加為“忽略”,并且它有效,會(huì)自動(dòng)從關(guān)聯(lián)表中檢索該列。


type Accreditation struct {

    // "accreditation" table

    ID          int `gorm:"primary_key"`

    Name        string

    Description string

    // "school_accreditation table", so the field is set as ignore with "-"

    EndAt       time.Time `gorm:"-"`

}


查看完整回答
反對(duì) 回復(fù) 2023-07-17
  • 1 回答
  • 0 關(guān)注
  • 170 瀏覽

添加回答

舉報(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)