问题:
将 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中文网其他相关文章!