如何使用另一个字典格式数据中的 swift 4 解析 json 数据?
How to parse json data with swift4 which is inside another dictionary formated data?
我正在使用 API 创建一个用于学习目的的天气预报应用程序。 API 具有以下 Jason 格式的数据:
{
"coord": {
"lon": 139,
"lat": 35
},
"weather": [
{
"id": 520,
"main": "Rain",
"description": "light intensity shower rain",
"icon": "09d"
}
],
"base": "stations",
"main": {
"temp": 293.15,
"pressure": 1005,
"humidity": 94,
"temp_min": 293.15,
"temp_max": 293.15
},
"visibility": 10000,
"wind": {
"speed": 7.2,
"deg": 210
},
"clouds": {
"all": 75
},
"dt": 1527753600,
"sys": {
"type": 1,
"id": 7616,
"message": 0.0068,
"country": "JP",
"sunrise": 1527708700,
"sunset": 1527760320
},
"id": 1851632,
"name": "Shuzenji",
"cod": 200
}
我想访问天气字典,在最新版本swift中尝试用这行代码访问主键值。
我可以获取城市名称和温度但是当我执行这些代码时我总是有错误警告并且无法在天气中访问主要内容。
谁知道如何解决这个问题?
if let dict = result.value as? Dictionary< String, AnyObject>{
if let name = dict["name"] as? String {
self._cityName = name
}
if let weather = dict["weather"] as? Dictionary<String,AnyObject >{
if let main = weather[0]["main"] as? String {
self._weatherType = main
}
}
if let main = dict["main"] as? Dictionary<String, AnyObject>{
if let currentTemp = main["temp"] as? Double {
let kelvinToFarenheitPre = (currentTemp * (9/5) - 459.67)
let kelvinToFarenheit = Double( round(10 * kelvinToFarenheitPre/10 ))
self._currentTemp = kelvinToFarenheit
}
}
//print(self.cityName)
}
//print("\(dict)")
print(self.weatherType)
print(self.cityName)
}
在这种情况下,问题出在代码上。对于这种特定情况,swift 3 和 swift 4.1
没有变化
我指的只是一本字典,但在 json 中它是一个字典数组,所以我需要将它转换为字典数组。
因此,正确的代码是:
if let weather = dict["weather"] as? [Dictionary<String,AnyObject >]{
if let main = weather[0]["main"] as? String {
self._weatherType = main
}
}
我正在使用 API 创建一个用于学习目的的天气预报应用程序。 API 具有以下 Jason 格式的数据:
{
"coord": {
"lon": 139,
"lat": 35
},
"weather": [
{
"id": 520,
"main": "Rain",
"description": "light intensity shower rain",
"icon": "09d"
}
],
"base": "stations",
"main": {
"temp": 293.15,
"pressure": 1005,
"humidity": 94,
"temp_min": 293.15,
"temp_max": 293.15
},
"visibility": 10000,
"wind": {
"speed": 7.2,
"deg": 210
},
"clouds": {
"all": 75
},
"dt": 1527753600,
"sys": {
"type": 1,
"id": 7616,
"message": 0.0068,
"country": "JP",
"sunrise": 1527708700,
"sunset": 1527760320
},
"id": 1851632,
"name": "Shuzenji",
"cod": 200
}
我想访问天气字典,在最新版本swift中尝试用这行代码访问主键值。
我可以获取城市名称和温度但是当我执行这些代码时我总是有错误警告并且无法在天气中访问主要内容。
谁知道如何解决这个问题?
if let dict = result.value as? Dictionary< String, AnyObject>{
if let name = dict["name"] as? String {
self._cityName = name
}
if let weather = dict["weather"] as? Dictionary<String,AnyObject >{
if let main = weather[0]["main"] as? String {
self._weatherType = main
}
}
if let main = dict["main"] as? Dictionary<String, AnyObject>{
if let currentTemp = main["temp"] as? Double {
let kelvinToFarenheitPre = (currentTemp * (9/5) - 459.67)
let kelvinToFarenheit = Double( round(10 * kelvinToFarenheitPre/10 ))
self._currentTemp = kelvinToFarenheit
}
}
//print(self.cityName)
}
//print("\(dict)")
print(self.weatherType)
print(self.cityName)
}
在这种情况下,问题出在代码上。对于这种特定情况,swift 3 和 swift 4.1
没有变化我指的只是一本字典,但在 json 中它是一个字典数组,所以我需要将它转换为字典数组。
因此,正确的代码是:
if let weather = dict["weather"] as? [Dictionary<String,AnyObject >]{
if let main = weather[0]["main"] as? String {
self._weatherType = main
}
}