Go에서 문자열 분할을 사용한 사용자 정의 역마샬링
JSON 데이터를 처리할 때 특정 데이터에 대한 역마샬링 프로세스를 변환하거나 사용자 정의해야 하는 경우가 종종 있습니다. 데이터 유형. 이 경우 비정렬화 중에 쉼표로 구분된 값이 포함된 JSON 문자열을 []문자열 슬라이스로 분할하려고 합니다.
이를 달성하려면 []문자열 유형에 대한 사용자 정의 비마샬러를 구현해 보겠습니다.
<code class="go">type strslice []string func (ss *strslice) UnmarshalJSON(data []byte) error { var s string if err := json.Unmarshal(data, &s); err != nil { return err } *ss = strings.Split(s, "-") return nil }</code>
이 사용자 정의 역마샬러는 원시 JSON 데이터를 입력으로 사용하고 이를 지정된 구분 기호(이 경우 "-")로 분할하여 문자열 조각으로 변환합니다.
원래 구조체에서 , 이제 Subjects 필드에 이 사용자 정의 유형을 사용할 수 있습니다.
<code class="go">type Student struct { StudentNumber int `json:"student_number"` Name string `json:"name"` Subjects strslice `json:"subjects"` }</code>
이를 통해 JSON 데이터를 구조체로 직접 역마샬링할 수 있으며 Subjects 필드는 자동으로 개별 문자열로 분할됩니다.
<code class="go">json := `{"student_number":1234567, "name":"John Doe", "subjects":"Chemistry-Maths-History-Geography"}` var s Student if err := json.Unmarshal([]byte(json), &s); err != nil { panic(err) } fmt.Println(s) // Output: {1234567 John Doe [Chemistry Maths History Geography]}</code>
위 내용은 Go에서 문자열 분할을 사용하여 JSON 역마샬링을 사용자 정의하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!