我想解析一个由数组组成的复杂 JSON API,它显示以下错误。 API 有天气的详细信息,我想在控制台中显示时间和波高。
错误
E/flutter ( 5675): [ERROR:flutter/lib/ui/ui_dart_state.cc(186)] Unhandled Exception: type '_InternalLinkedHashMap<String, dynamic>' is not a subtype of type 'List<dynamic>'
E/flutter ( 5675): #0 _JsonDemoState.getJsonData
package:bottom_nav/APISample/JsonParsing.dart:25
E/flutter ( 5675): <asynchronous suspension>
E/flutter ( 5675):
这是我需要解析的json。
{
"hours": [
{
"time": "2021-03-23T00:00:00+00:00",
"waveHeight": {
"icon": 1.35,
"meteo": 1.25,
"noaa": 0.97,
"sg": 1.25
}
},
{
"time": "2021-03-23T01:00:00+00:00",
"waveHeight": {
"icon": 1.36,
"meteo": 1.26,
"noaa": 0.97,
"sg": 1.26
}
}
]
}
这是解析json的函数
void getJsonData() async {
String url2 =
'https://api.stormglass.io/v2/weather/point?lat=5.9774&lng=80.4288¶ms=waveHeight&start=2021-03-23&end=2021-03-24';
String apiKey =
'the API key';
Response response = await get(Uri.parse(url2),
headers: {HttpHeaders.authorizationHeader: apiKey});
List data = jsonDecode(response.body);
data.forEach((element) {
Map obj = element;
String hours = obj['hours'];
Map wave = obj['waveHeight'];
int icon = wave['icon'];
print(icon);
});
}
答案 0 :(得分:1)
你介意试试这个吗
var jsonData = jsonDecode(response.body);
List data = jsonData["hours"];
data.forEach((element) {
Map obj = element;
Map wave = obj['waveHeight'];
double icon = wave['icon'];
print(icon);
});
答案 1 :(得分:1)
response.body 的 JSON 反序列化将返回一个 Map 而不是 List,因此一个选项是访问与 'hours' 键关联的值并将其转换为具有 String 类型键和 dynamic 类型值的 Map 列表.
final mapList = data['hours'] as List<Map<String, dynamic>>;
mapList.forEach((item) => print(item.values.last['icon']));