Golang에서 문자열 분할을 사용한 사용자 정의 역마샬링
문제:
JSON 역마샬링 처리 필드는 문자열 작업을 사용하여 조각으로 분할해야 합니다. 특히, 제공된 JSON의 "주제" 필드는 []문자열을 생성하기 위해 '-'로 분할해야 합니다.
해결책:
이를 달성하려면 다음을 수행할 수 있습니다. 사용자 정의 문자열 슬라이스 유형을 정의하고 이에 대한 json.Unmarshaler 인터페이스를 구현합니다. 방법은 다음과 같습니다.
<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>
이 사용자 정의 유형을 사용하면 "주제" 필드를 문자열로 역마샬링한 다음 자동으로 슬라이스로 분할할 수 있습니다.
수정된 구조체:
이제 "주제" 필드에 사용자 정의 strslice 유형을 사용하도록 Student 구조체를 업데이트할 수 있습니다.
<code class="go">type Student struct { StudentNumber int `json:"student_number"` Name string `json:"name"` Subjects strslice `json:"subjects"` }</code>
사용법:
이러한 수정을 통해 이제 제공된 JSON을 비정렬화하고 "제목" 필드를 자동으로 분할할 수 있습니다.
<code class="go">func main() { var s Student err := json.Unmarshal([]byte(src), &s) fmt.Println(s, err) } const src = `{"student_number":1234567, "name":"John Doe", "subjects":"Chemistry-Maths-History-Geography"}`</code>
출력:
{1234567 John Doe [Chemistry Maths History Geography]} <nil>
이것은 이 접근 방식은 JSON 데이터를 비정렬화하는 동시에 필드 변환을 처리하는 깔끔하고 사용자 정의 가능한 방법을 제공합니다.
위 내용은 Golang에서 언마샬링하는 동안 JSON 필드를 문자열 슬라이스로 분할하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!