問題:
將JSON 解組到在具有字段的結構體中,該結構體應該是字串切片,而JSON 值是需要使用分隔符號分割的單一字串。
<code class="json">{ "student_number": 1234567, "name": "John Doe", "subjects": "Chemistry-Maths-History-Geography" }</code>
<code class="go">type Student struct { StudentNumber int Name string Subjects []string }</code>
答案:
定義一個自訂字串切片類型並實作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>
在結構中使用此自定義類型:
<code class="go">type Student struct { StudentNumber int Name string Subjects strslice }</code>
代碼示例:
<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>
以上是如何在 Golang 中使用分隔符號將 JSON 字串解組為切片?的詳細內容。更多資訊請關注PHP中文網其他相關文章!