dounan9070 2017-08-23 15:07
浏览 185
已采纳

在Go中解析带有数组的JSON文件

The following is the JSON file I'm trying to parse (OpenWeatherMap API if anyone is curious). The builtin encoding/json does a pretty good job of it. When I use json.Unmarshal(testJson, &parsed), most of the JSON file is parsed correctly. However, with the way that it is formatted, the "weather" is giving me a headache.

I parsed the file generated by encoding/json with parsedMap := parsed.(map[string]interface{}), which works when I try to refer to key,value pair with the key "main".

With fmt.Println(), the value is map[temp:280.32 pressure:1012 humidity:81 temp_min:279.15 temp_max:281.15], which I can work with.

With the key "weather" however, I get this [map[icon:09d id:300 main:Drizzle description:light intensity drizzle]]. The additional square brackets seem to be causing issues.

{
  "coord": {
      "lon": -0.13,
      "lat": 51.51
    },
    "weather": [
      {
        "id": 300,
        "main": "Drizzle",
        "description": "light intensity drizzle",
        "icon": "09d"
      }
    ],
    "base": "stations",
    "main": {
      "temp": 280.32,
      "pressure": 1012,
      "humidity": 81,
      "temp_min": 279.15,
      "temp_max": 281.15
    },
    "visibility": 10000,
    "wind": {
      "speed": 4.1,
      "deg": 80
    },
    "clouds": {
      "all": 90
    },
    "dt": 1485789600,
    "sys": {
      "type": 1,
      "id": 5091,
      "message": 0.0103,
      "country": "GB",
      "sunrise": 1485762037,
      "sunset": 1485794875
    },
    "id": 2643743,
    "name": "London",
    "cod": 200
  }

Code for reference:

var testJSON = //JSON EARLIER IN THE POST var parsed interface{}

json.Unmarshal(testJSON, &parsed)

parsedMap := parsed.(map[string]interface{})
mainTemp := parsedMap["weather"]


fmt.Println(mainTemp)
  • 写回答

2条回答 默认 最新

  • donglian4770 2017-08-23 15:20
    关注

    You should first perform a Type assertions on weather as an array of interface{}.

    Then do the same on the first element as a map[string]interface{}

    temps := parsedMap["weather"].([]interface{})
    mainTemp := temps[0].(map[string]interface{})
    

    You can see a full example here https://play.golang.org/p/JIfCGrsYl9

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

报告相同问题?

悬赏问题

  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办
  • ¥15 kylin启动报错log4j类冲突
  • ¥15 超声波模块测距控制点灯,灯的闪烁很不稳定,经过调试发现测的距离偏大
  • ¥15 import arcpy出现importing _arcgisscripting 找不到相关程序