sql.NullString 유형의 필드가 있는 GORM 모델을 생성할 때 다음과 같은 시도가 발생합니다. 문자열 값으로 필드를 초기화하면 오류가 발생합니다.
cannot use "a string goes here", (type string) as type sql.NullString in field value
sql.NullString 유형은 실제로 문자열 유형이 아니라 문자열과 부울을 캡슐화하는 구조체입니다. 문자열이 유효한지(NULL이 아님) 여부를 나타내는 플래그입니다. sql.NullString 필드를 초기화하려면 문자열 값이 아닌 구조체 값으로 초기화해야 합니다.
다음 코드는 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>
또는 sql.Scanner 및 드라이버.Valuer 인터페이스를 구현하고 null 바이트를 사용하여 NULL 값을 신호하는 사용자 지정 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>
사용법:
<code class="go">db.Create(&Day{ Nameday: "Monday", Dateday: "23-10-2019", // no need for explicit typing/conversion Something: "a string goes here", Holyday: false, })</code>
위 내용은 GORM에서 sql.NullString 필드를 초기화하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!