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

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

插入后無(wú)法檢索任何關(guān)系表

插入后無(wú)法檢索任何關(guān)系表

我正在使用 與 ,我有如下所示的表格。我在檢索關(guān)系表時(shí)遇到問題,例如,當(dāng)我插入新用戶時(shí),所有內(nèi)容都按下面的日志所示插入,但是一旦我嘗試檢索該用戶,那么所有應(yīng)該是帶有外表的字段的字段要么是或。從我在數(shù)據(jù)庫(kù)中看到的內(nèi)容來看,這些表的值入并且實(shí)際上已經(jīng)創(chuàng)建了外鍵,那么問題可能是什么呢?gormGolangnil[]模型:type User struct {    ID          string `json:"id" gorm:"primaryKey"`    CreatedAt   time.Time    UpdatedAt   time.Time    DeletedAt   gorm.DeletedAt `gorm:"index"`    License     *License       `json:"license"`    Statistics  []*Statistic   `json:"statistics"`    App         *App           `json:"app"`    Disabled    bool           `json:"disabled"`    EncryptedID string         `json:"encrypted_id"`}//1 of the tables that doesn't get found but exists in database after creationtype License struct {    gorm.Model    Key               string  `json:"key"`    DesktopHardwareID string  `json:"desktop_hardware_id"`    MobileHardwareID  *string `json:"mobile_hardware_id"`    Stripe            *Stripe  `json:"stripe" ,gorm:"foreignKey:LicenseID"`    UserID            string  `json:"user_id"`}提前致謝編輯 1 檢索行的代碼var user models.User//tokens[0] is the ID of the userdb.PostgresClient.Where("id = ?", tokens[0]).First(&user)
查看完整描述

1 回答

?
開心每一天1111

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

要從關(guān)系表中加載數(shù)據(jù),可以使用該函數(shù)。Preload

要加載所有第一級(jí)關(guān)聯(lián),您可以執(zhí)行如下操作:

db.PostgresClient.Preload(clause.Associations).Where("id = ?", tokens[0]).First(&user)

但是,對(duì)于嵌套關(guān)聯(lián),您需要單獨(dú)執(zhí)行它們:

db.PostgresClient.Preload("License.Stripe").Where("id = ?", tokens[0]).First(&user)

您可以查看文檔以獲取更多詳細(xì)信息。


查看完整回答
反對(duì) 回復(fù) 2022-09-26
  • 1 回答
  • 0 關(guān)注
  • 102 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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