Dans GORM, l'utilisation de sql.NullString pour un champ qui peut être NULL fait face au erreur :
cannot use "a string goes here", (type string) as type sql.NullString in field value
en essayant d'exécuter une simple validation GORM exemple.
sql.NullString n'est pas un type chaîne mais un type struct défini comme :
type NullString struct { String string Valid bool // Valid is true if String is not NULL }
Pour l'initialiser correctement, utilisez la syntaxe suivante :
db.Create(&Day{ Nameday: "Monday", Dateday: "23-10-2019", Something: sql.NullString{String: "a string goes here", Valid: true}, Holyday: false, })
Alternativement, pour conserver l'initialisation plus simple syntaxe :
Définissez un type de chaîne nullable personnalisé :
type MyString string
Remplacez les méthodes Value() et Scan() comme suit :
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 }
Déclarez le champ Something comme MyString et initialisez-le comme prévu :
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, })
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!