문자열 유형을 sql.NullString으로 사용할 수 없습니다.
GORM 모델을 생성할 때 다음을 사용하려고 하면 오류가 발생할 수 있습니다. null을 허용해야 하는 필드의 문자열 유형입니다. Null 허용 필드에 대해 sql.NullString을 사용할 때 문제가 발생합니다.
문제:
""여기에 문자열을 사용할 수 없습니다"라는 오류가 발생합니다. ( 유형 문자열)을 필드 값에 sql.NullString 유형으로 지정하면 sql.NullString 필드에 문자열을 직접 할당하려고 함을 나타냅니다. 그러나 sql.NullString은 문자열 유형이 아니라 null 허용 문자열을 나타내도록 설계된 구조체 유형입니다.
해결책:
이 문제를 해결하려면 초기화해야 합니다. sql.NullString 필드가 올바르게 작동합니다. 다음과 같이 초기화해야 합니다.
<code class="go">db.Create(&Day{ Nameday: "Monday", Dateday: "23-10-2019", Something: sql.NullString{String: "a string goes here", Valid: true}, Holyday: false, })</code>
대체 해결 방법:
null 허용 문자열에 대해 단순화된 구문을 사용하려는 경우 다음을 수행하여 고유한 null 허용 문자열 유형을 만들 수 있습니다. sql.Scanner 및 Driver.Valuer 인터페이스를 구현하고 null 바이트를 활용하여 NULL 값을 신호로 보냅니다.
<code class="go">type MyString string const MyStringNull MyString = "\x00" // implements driver.Valuer, will be invoked automatically when written to the db func (s MyString) Value() (driver.Value, error) { if s == MyStringNull { return nil, nil } return []byte(s), nil } // implements sql.Scanner, will be invoked automatically when read from the db 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 }</code>
이 유형을 사용하면 다음과 같이 Something 필드를 초기화할 수 있습니다.
<code class="go">db.Create(&Day{ Nameday: "Monday", Dateday: "23-10-2019", Something: "a string goes here", Holyday: false, })</code>
위 내용은 GORM 모델에서 Null 허용 문자열을 처리하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!