drb56625 2016-10-07 09:54
浏览 101
已采纳

Golang Unmarshal JSON

My input JSON, has a list of different elements.
I have problems with the number of the first element of response.

Simplified example:

package main

import (
    "fmt"
    "log"
    "encoding/json"
)

var j = ` {
  "response": [
    777, // problem here !!!
    {
      "id": 888,
      "from_id": 999,
      "to_id": 888,
      "text": "hello..."
    },
        {
      "id": 999,
      "from_id": 888,
      "to_id": 999,
            "text": "goodbye..."
    }
  ]
}`

type D struct {
    Id     int `json:"id"`
    FromId int `json:"from_id"`
    ToId   int `json:"to_id"`
    Text   string `json:"text"`
}

type R struct {
    Count    int
    Response []D `json:"response"`
}

func main() {
    var data = new(R)
    err := json.Unmarshal([]byte(j), &data)
    if err != nil {
        log.Fatal(err)
    }
    fmt.Println(data.Response)
}

Error on output. I do not understand where the error. Help me please.


  • 写回答

3条回答 默认 最新

  • duanhunlou7051 2016-10-07 10:50
    关注

    1- Here is the working code,try it on The Go Playground:

    package main
    
    import (
        "encoding/json"
        "fmt"
    )
    
    func main() {
        var d *R
        err := json.Unmarshal([]byte(str), &d)
        if err != nil {
            panic(err)
        }
        var data R2
        data.Count = int(d.Response[0].(float64))
    
        for _, v := range d.Response[1:] {    
            bs, err := json.Marshal(v)
            if err != nil {
                panic(err)
            }
            var d1 *D
            err = json.Unmarshal(bs, &d1)
            if err != nil {
                panic(err)
            }
            data.Response = append(data.Response, *d1)
        }
        fmt.Println(data)    
    }
    
    type R struct {
        Response []interface{} `json:"response"`
    }
    
    var str = ` {
      "response": [
        777,  
        {
          "id": 888,
          "from_id": 999,
          "to_id": 888,
          "text": "hello"
        },
            {
          "id": 999,
          "from_id": 888,
          "to_id": 999,
                "text": "goodbye"
        }
      ]
    }`
    
    type D struct {
        Id     int    `json:"id"`
        FromId int    `json:"from_id"`
        ToId   int    `json:"to_id"`
        Text   string `json:"text"`
    }
    type R2 struct {
        Count    int
        Response []D
    }
    

    output:

    {777 [{888 999 888 hello} {999 888 999 goodbye}]}
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 iOS 自定义输入法-第三方输入法
  • ¥15 很想要一个很好的答案或提示
  • ¥15 扫描项目中发现AndroidOS.Agent、Android/SmsThief.LI!tr
  • ¥15 怀疑手机被监控,请问怎么解决和防止
  • ¥15 Qt下使用tcp获取数据的详细操作
  • ¥15 idea右下角设置编码是灰色的
  • ¥15 全志H618ROM新增分区
  • ¥15 在grasshopper里DrawViewportWires更改预览后,禁用电池仍然显示
  • ¥15 NAO机器人的录音程序保存问题
  • ¥15 C#读写EXCEL文件,不同编译