我正在尝试解组一些 json 以便嵌套对象不会被解析而只是被视为 a stringor []byte。
所以我想得到以下内容:
{
"id" : 15,
"foo" : { "foo": 123, "bar": "baz" }
}
解组为:
type Bar struct {
ID int64 `json:"id"`
Foo []byte `json:"foo"`
}
我收到以下错误:
json: cannot unmarshal object into Go value of type []uint8
蛊毒传说
相关分类