dongxiong4571 2013-06-12 00:43
浏览 105
已采纳

golang:在地图中快速访问地图数据

So I've got the following bit of JSON and I want to pull out the "$t" value under "token". Continue for Go code...

{
  "@encoding": "iso-8859-1",
  "@version": "1.0",
  "service": {
    "auth": {
      "expiresString": {
        "$t": "2013-06-12T01:15:28Z"
      },
      "token": {
        "$t": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
      },
      "expires": {
        "$t": "1370999728"
      },
      "key": {
        "$t": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
      }
    }
}

I have the following snippet of Go code that unmarshals the json into an interface. Then I work my way down to the "$t" value of "token". This approach does work, but it's ugly.

My question: is there a faster way to access that value than by converting each map into an interface? I'm very new to Go and am not aware of many of the useful features of interfaces and maps.

var f interface{}
jerr := json.Unmarshal(body, &f)
m := f.(map[string]interface{})
ser := m["service"].(map[string]interface{})
a := ser["auth"].(map[string]interface{})
tok := a["token"].(map[string]interface{})
token := tok["$t"]
fmt.Fprintf(w, "Token: %v
", token)

Thanks in advance!

  • 写回答

2条回答 默认 最新

  • dtx6087 2013-06-12 01:01
    关注

    If that's the only value you want, then how about using an anonymous struct that defines the path to your data.

    var m = new(struct{Service struct{Auth struct{Token map[string]string}}})
    
    var err = json.Unmarshal([]byte(data), &m)
    
    fmt.Println(m.Service.Auth.Token["$t"], err)
    

    DEMO: http://play.golang.org/p/ZdKTzM5i57


    Instead of using a map for the innermost data, we could use another struct, but we'd need to provide a field tag to alias the name.

    var m = new(struct{Service struct{Auth struct{Token struct{T string `json:"$t"`}}}})
    
    var err = json.Unmarshal([]byte(data), &m)
    
    fmt.Println(m.Service.Auth.Token.T, err)
    

    DEMO: http://play.golang.org/p/NQTpaUvanx

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 TLS1.2协议通信解密
  • ¥40 图书信息管理系统程序编写
  • ¥20 Qcustomplot缩小曲线形状问题
  • ¥15 企业资源规划ERP沙盘模拟
  • ¥15 树莓派控制机械臂传输命令报错,显示摄像头不存在
  • ¥15 前端echarts坐标轴问题
  • ¥15 ad5933的I2C
  • ¥15 请问RTX4060的笔记本电脑可以训练yolov5模型吗?
  • ¥15 数学建模求思路及代码
  • ¥50 silvaco GaN HEMT有栅极场板的击穿电压仿真问题