Golang JSON 解析难题:如何将一组字节数组解析成结构体?
golang json 解析难题
在 json 数据解析过程中,如何将一组字节数组解析成结构体时,新手常常会遇到困难。
问题描述:
package main import ( "fmt" jsoniter "github.com/json-iterator/go" ) type car struct { other []byte `json:"other"` } func main() { j := []byte(`{"other": {"a":[1,2]}}`) json := jsoniter.configcompatiblewithstandardlibrary obj := car{} err := json.unmarshal(j, &obj) if err != nil { fmt.println(err.error()) } else { fmt.println(obj) } }
执行代码会报错:
main.car.other: base64codec: invalid input, error found in #10 byte of ...|{"other": {"a":[1,2]|..., bigger context ...|{"other": {"a":[1,2]}}|...
解决方案:
在 go 中解析 json 数据时,需要明确指定结构体的完整结构。修改后的代码如下:
package main import ( "fmt" jsoniter "github.com/json-iterator/go" ) type other struct { A []int `json:"a,omitempty"` } // Car 车 type Car struct { Other other `json:"other,omitempty"` } func main() { j := []byte(`{"other": {"a":[1,2]}}`) json := jsoniter.ConfigCompatibleWithStandardLibrary obj := Car{} err := json.Unmarshal(j, &obj) if err != nil { fmt.Println(err.Error()) } else { fmt.Printf("%+v\n", obj) } }
请注意,在 go 中从字符串解析出结构体时,需要写明所有结构体结构,否则会出现解析错误。
以上就是Golang JSON 解析难题:如何将一组字节数组解析成结构体?的详细内容,更多请关注www.sxiaw.com其它相关文章!