我正在尝试将 Met Office 中的以下 JSON 转换为 Swift 4 中的对象,但遇到错误。我的计划是在 JSON 解码后存储在 Core Data 中。这是返回的一些 JSON
let json = """
{
"Locations":
{
"Location":
[
{
"elevation": "50.0",
"id": "14",
"latitude": "54.9375",
"longitude": "-2.8092",
"name": "Carlisle Airport",
"region": "nw",
"unitaryAuthArea": "Cumbria"
},
{
"elevation": "22.0",
"id": "26",
"latitude": "53.3336",
"longitude": "-2.85",
"name": "Liverpool John Lennon Airport",
"region": "nw",
"unitaryAuthArea": "Merseyside"
}
]
}
}
""".data(using: .utf8)!
我创建了一个结构,用于将数据转换为:
struct locations: Decodable {
var Locations: [location]
struct location: Decodable {
var Location: [MetOfficeLocation]
struct MetOfficeLocation: Decodable {
var elevation: String
var id: String
var latitude: String
var longitude: String
var obsSource: String?
var name: String
var region: String
var area: String
private enum CodingKeys: String, CodingKey {
case elevation
case id
case latitude
case longitude
case obsSource
case name
case region
case area = "unitaryAuthArea"
}
}
}
}
然后我使用 JSONDecoder 进行转换:
let place = try JSONDecoder().decode([Location].self, from: json)
for i in place {
print(i.Location[0].name)
}
我收到一个 keyNotFound 错误,没有与关键位置关联的值 (\"locations\")。
谢谢