首頁 > 後端開發 > Golang > 主體

如何使用 GORM 和 sql.NullString 處理可為 Null 的字串欄位?

Mary-Kate Olsen
發布: 2024-11-06 03:29:02
原創
637 人瀏覽過

How to Handle Nullable String Fields with GORM and sql.NullString?

無法使用類型字串作為sql.NullString

查詢

在GORM 中,對可能為NULL 的欄位使用sql.NullString 會面臨錯誤:

cannot use "a string goes here", (type string) as type sql.NullString in field value
登入後複製

嘗試執行簡單的GORM 驗證範例時。

解決方案

sql.NullString 不是字串類型,而是定義為的結構類型:

type NullString struct {
    String string
    Valid  bool // Valid is true if String is not NULL
}
登入後複製

要正確初始化,請使用以下語法:

db.Create(&Day{
    Nameday:     "Monday",
    Dateday:     "23-10-2019",
    Something:   sql.NullString{String: "a string goes here", Valid: true},
    Holyday:     false,
})
登入後複製

替代解決方案

或者,保留更簡單的初始化語法:

  1. 定義自訂可為空字串類型:

    type MyString string
    登入後複製
  2. 實作sql.Scanner 和driver.Valuer 介面來處理值轉換。
  3. 覆蓋Value() 和Scan() 方法如下:

    func (s MyString) Value() (driver.Value, error) {
        if s == MyStringNull {
            return nil, nil
        }
        return []byte(s), nil
    }
    
    func (s *MyString) Scan(src interface{}) error {
        switch v := src.(type) {
        case string:
            *s = MyString(v)
        case []byte:
            *s = MyString(v)
        case nil:
            *s = MyStringNull
        }
        return nil
    }
    登入後複製
  4. 將Something 欄位宣告為MyString 並按預期初始化它:

    db.Create(&Day{
        Nameday:     "Monday",
        Dateday:     "23-10-2019",
        // Here, an untyped string constant will explicitly convert to MyString because they have the same underlying type.
        Something:   "a string goes here",
        Holyday:     false,
    })
    登入後複製

以上是如何使用 GORM 和 sql.NullString 處理可為 Null 的字串欄位?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!