Codable / Decodable应该使用字符串解码数组

时间:2017-07-10 07:08:40

标签: swift swift4 codable decodable

为什么名称数组不能解码?

准备游乐场,简单地将其粘贴到你的游乐场

import Foundation

struct Country : Decodable {

    enum CodingKeys : String, CodingKey {
        case names
    }

    var names : [String]?
}

extension Country {
    public init(from decoder: Decoder) throws {
        let values = try decoder.container(keyedBy: CodingKeys.self)
        names = try values.decode([String]?.self, forKey: .names)!
    }
}

let json = """
 [{
    "names":
      [
       "Andorre",
       "Andorra",
       "アンドラ"
      ]
 },{
    "names":
      [
       "United Arab Emirates",
       "Vereinigte Arabische Emirate",
       "Émirats Arabes Unis",
       "Emiratos Árabes Unidos",
       "アラブ首長国連邦",
       "Verenigde Arabische Emiraten"
      ]
  }]
""".data(using: .utf8)!

let decoder = JSONDecoder()
do {
    let countries = try decoder.decode([Country].self, from: json)
    countries.forEach { print($0) }
} catch {
    print("error")
}

1 个答案:

答案 0 :(得分:1)

您已将names定义为Country可选属性。 如果您的意图是该密钥可能不存在于JSON中 然后使用decodeIfPresent

extension Country {
    public init(from decoder: Decoder) throws {
        let values = try decoder.container(keyedBy: CodingKeys.self)
        names = try values.decodeIfPresent([String].self, forKey: .names)
    }
}

如果容器没有与key关联的值,或者该值为null,则此方法返回nil

但实际上您可以省略自定义init(from decoder: Decoder) 实现(和enum CodingKeys),因为这是默认行为 自动合成。

备注:隐式变量error在任何catch子句中定义, 所以

} catch {
    print(error.localizedDescription)
}

可以提供更多信息,而不仅仅是print("error")(尽管不是 在这个特殊情况下)。