让我们看一下以下代码片段:
type Input struct {
Value1 string
Value2 string
Value3 string
Value4 string
Nest
}
type Nest struct {
ID string
}
input := &Input{}
decoder := json.NewDecoder(r.Body)
if err := decoder.Decode(&input); err != nil {
fmt.Printf("something went wrong %v", err)
}
fmt.Printf("Json Input = %+v\n", input)
我通过 cURL 发送以下内容:
curl -k -vvv -X POST -d '{"value1":"test", "value2":"Somevalue", "value3":"othervalue", "Nest":{"ID": "12345"}}' http://localhost:8000/endpoint
..并获得以下输出:
{Value1:test Value2:Somevalue Value3:othervalue Value4: Nest:{ID:}}
问题:
由于某种原因,我没有很好地解码嵌套结构。此外,我不确定这是我的代码还是我调用它的方式。
答案 0 :(得分:4)
Nest
Input
中的embedded。
JSON {"value1":"test", "value2":"Somevalue", "value3":"othervalue", "ID": "12345"}
将被正确编组到您的Input
。
如果您想使用问题中的JSON正文,则必须将Input
更改为以下
type Input struct {
Value1 string
Value2 string
Value3 string
Value4 string
Nest Nest
}