gpt4 book ai didi

使用复杂和嵌套数据在 Swift 4 中解析 JSON

转载 作者:可可西里 更新时间:2023-11-01 00:20:56 24 4
gpt4 key购买 nike

我目前正在尝试使用 https://openweathermap.org 中的 JSON 制作一个天气应用程序但我在处理 JSON 文件中的天气部分时遇到了问题。我不确定如何访问对象内的“id”值。

{
"base": "stations",
"clouds": {
"all": 36
},
"cod": 200,
"coord": {
"lat": 51.51,
"lon":
-0.13
},
"dt": 1507497600,
"id": 2643743,
"main": {
"humidity": 82,
"pressure": 1021,
"temp": 10.65,
"temp_max": 13,
"temp_min": 9
},
"name": "London",
"sys": {
"country": "GB",
"id": 5091,
"message": 0.0036,
"sunrise": 1507443264,
"sunset": 1507483213,
"type": 1
},
"visibility": 10000,
"weather": [{
"description": "scattered clouds",
"icon": "03n",
"id": 802,
"main": "Clouds"
}],
"wind": {
"deg": 200,
"speed": 1.5
}
}

我怎样才能在那里获取数据。在我的 swift 代码中,我使用的结构符合 swift 4 中新的“可编码”协议(protocol)。

// all structures for the data
struct CurrentLocalWeather: Codable {
let base: String
let clouds: clouds
let cod: Int
let coord: coord
let dt: Int
let id: Int
let main: main
let name: String
let sys: sys
let visibility: Int
let weather: [weather]
let wind: wind
}

struct clouds: Codable {
let all: Int
}

struct coord: Codable {
let lat: Double
let lon: Double
}

struct main: Codable {
let humidity: Double
let pressure: Double
let temp: Double
let temp_max: Double
let temp_min: Double
}

struct sys: Codable {
let country: String
let id: Int
let message: Double
let sunrise: Double
let sunset: Double
let type: Int
}

struct weather: Codable {
let description: String
let icon: String
let id: Int
let main: String
}

struct wind: Codable {
let deg: Double
let speed: Double
}

// Get data from weather server
func getCurrentWeatherData() {

let jsonUrlString = "https://api.openweathermap.org/data/2.5/weather?id=2643743&units=metric&APPID=fdf04e9483817ae2fa77048f7e6705e8"

guard let url = URL(string: jsonUrlString) else { return }

URLSession.shared.dataTask(with: url) { (data, response, err) in

guard let data = data else { return }

do {
let decoder = JSONDecoder()
decoder.dateDecodingStrategy = .iso8601

let json = try decoder.decode(CurrentLocalWeather.self, from: data)

print("Data Successfully Retrieved!\nServer Response: \(json.cod)\nLocation: \(json.name)")

DispatchQueue.main.async() {
// Any of the following allows me to access the data from the JSON
self.locationLabel.text = "\(json.name)"
self.temperatureLabel.text = "Currently: \(json.main.temp)ºC"
self.highTemperatureLabel.text = "High: \(json.main.temp_max)ºC"
self.lowTemperatureLabel.text = "Low: \(json.main.temp_min)ºC"
self.sunriseLabel.text = "\(self.convertFromUnixToNormal(time: json.sys.sunrise))"
self.sunsetLabel.text = "\(self.convertFromUnixToNormal(time: json.sys.sunset))"
self.humidityLabel.text = "Humidity: \(json.main.humidity)%"
self.pressureLabel.text = "Pressure: \(json.main.pressure) hPa"
self.windSpeedLabel.text = "Wind Speed: \(json.wind.speed) km/h"


}
} catch let jsonErr {
print("Error: \(jsonErr)")
}

}.resume()
}

最佳答案

您需要正确识别您的 json 字符串并提供所有必要的结构来对其进行解码。只需查看提供的 json,您就可以了解正确解码它所必需的结构:

struct CurrentLocalWeather: Codable {
let base: String
let clouds: Clouds
let cod: Int
let coord: Coord
let dt: Int
let id: Int
let main: Main
let name: String
let sys: Sys
let visibility: Int
let weather: [Weather]
let wind: Wind
}
struct Clouds: Codable {
let all: Int
}
struct Coord: Codable {
let lat: Double
let lon: Double
}
struct Main: Codable {
let humidity: Int
let pressure: Int
let temp: Double
let tempMax: Int
let tempMin: Int
private enum CodingKeys: String, CodingKey {
case humidity, pressure, temp, tempMax = "temp_max", tempMin = "temp_min"
}
}
struct Sys: Codable {
let country: String
let id: Int
let message: Double
let sunrise: UInt64
let sunset: UInt64
let type: Int
}
struct Weather: Codable {
let description: String
let icon: String
let id: Int
let main: String
}
struct Wind: Codable {
let deg: Int
let speed: Double
}

let weatherData = Data("""
{"base" : "stations",
"clouds": { "all": 36 },
"cod" : 200,
"coord" : { "lat": 51.51,
"lon": -0.13},
"dt": 1507497600,
"id": 2643743,
"main": {
"humidity": 82,
"pressure": 1021,
"temp": 10.65,
"temp_max": 13,
"temp_min": 9},
"name": "London",
"sys": {
"country": "GB",
"id": 5091,
"message": 0.0036,
"sunrise": 1507443264,
"sunset": 1507483213,
"type": 1 },
"visibility": 10000,
"weather": [{
"description": "scattered clouds",
"icon": "03n",
"id": 802,
"main": "Clouds"}],
"wind": {
"deg": 200,
"speed": 1.5
}
}
""".utf8)

let decoder = JSONDecoder()

do {
let currentLocalWeather = try decoder.decode(CurrentLocalWeather.self, from: weatherData)
print(currentLocalWeather) // "CurrentLocalWeather(base: "stations", clouds: __lldb_expr_367.Clouds(all: 36), cod: 200, coord: __lldb_expr_367.Coord(lat: 51.509999999999998, lon: -0.13), dt: 1507497600, id: 2643743, main: __lldb_expr_367.Main(humidity: 82, pressure: 1021, temp: 10.65, temp_max: 13, temp_min: 9), name: "London", sys: __lldb_expr_367.Sys(country: "GB", id: 5091, message: 0.0035999999999999999, sunrise: 1507443264, sunset: 1507483213, type: 1), visibility: 10000, weather: [__lldb_expr_367.Weather(description: "scattered clouds", icon: "03n", id: 802, main: "Clouds")], wind: __lldb_expr_367.Wind(deg: 200, speed: 1.5))\n"
} catch {
print(error)
}

关于使用复杂和嵌套数据在 Swift 4 中解析 JSON,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46636533/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com