次の JSON を Met Office から 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)
}
キーの場所 (\"locations\") に値が関連付けられていないという keyNotFound エラーが発生しています。" 単に場所であるため、場所にどの値を割り当てるべきかがわからないため、混乱しています。
ありがとうございました