如何处理标准和自定义的Swift 4 Decodable属性的混合?

时间:2019-02-08 18:19:30

标签: swift4 codable

我一直在尝试使用自定义的Decodable属性在Swift 4中处理JSON,我对映射棘手的类型和格式转换的便捷性印象深刻。

但是,在服务器向我公开的JSON数据结构中,只有少数属性需要这种处理。其余的是简单的整数和字符串。有什么方法可以将定制解码器与标准解码器混合使用?

这是一个简化的示例,显示了我想摆脱的内容:

struct mystruct : Decodable {
    var myBool: Bool
    var myDecimal: Decimal
    var myDate: Date
    var myString: String
    var myInt: Int
}

extension mystruct {
    private struct JSONsource: Decodable {
        var my_Bool: Int
        var my_Decimal: String
        var my_Date: String

        // These seem redundant, how can I remove them?
        var myString: String
        var myInt: Int
    }

    private enum CodingKeys: String, CodingKey {
        case item
    }

    init(from decoder: Decoder) throws {
        let container = try decoder.container(keyedBy: CodingKeys.self)
        let item = try container.decode(JSONsource.self, forKey: .item)
        myBool = item.my_Bool == 1 ? true : false
        myDecimal = Decimal(string: item.my_Decimal)!
        let dateFormatter = DateFormatter()
        dateFormatter.dateFormat = "yyyy-MM-dd'T'HH:mm:ss.SSSSSSSZZZZZ"
        dateFormatter.locale = Locale(identifier: "en_US_POSIX")
        myDate = dateFormatter.date(from: item.my_Date)!

        // Can I somehow get rid of this redundant-looking code?
        myString = item.myString
        myInt = item.myInt
    }
}


let myJSON = """
{
    "item": {
        "my_Decimal": "123.456",
        "my_Bool" : 1,
        "my_Date" : "2019-02-08T11:14:31.4547774-05:00",
        "myInt" : 148727,
        "myString" : "Hello there!"
    }
}
""".data(using: .utf8)

let x = try JSONDecoder().decode(mystruct.self, from: myJSON!)

print("My decimal: \(x.myDecimal)")
print("My bool: \(x.myBool)")
print("My date: \(x.myDate)")
print("My int: \(x.myInt)")
print("My string: \(x.myString)")

1 个答案:

答案 0 :(得分:1)

JSONDecoder具有dateDecodingStrategy。无需手动对其进行解码。为了简化对编码密钥的解码,可以将解码器属性.keyDecodingStrategy设置为. convertFromSnakeCase。您还可以处理一些类型不匹配的问题,以添加计算属性。顺便说一句,这可能有助于为带有小数秒的ISO8601日期字符串创建自定义格式器。 How to create a date time stamp and format as ISO 8601, RFC 3339, UTC time zone?。最后但并非最不重要的一点是,使用UpperCamelCase

为结构命名是Swift约定
struct Root: Codable {
    let item: Item
}

struct Item : Codable {
    var myBool: Int
    var myDecimal: String
    var myDate: Date
    var myString: String
    var myInt: Int
}

extension Item {
    var bool: Bool {
        return myBool == 1
    }
    var decimal: Decimal? {
        return Decimal(string: myDecimal)
    }
}

extension Item: CustomStringConvertible {
    var description: String {
        return "Iten(bool: \(bool), decimal: \(decimal ?? 0), date: \(myDate), string: \(myString), int: \(myInt))"
    }
}

let decoder = JSONDecoder()
decoder.keyDecodingStrategy = .convertFromSnakeCase

let dateFormatter = DateFormatter()
dateFormatter.dateFormat = "yyyy-MM-dd'T'HH:mm:ss.SSSSSSSZZZZZ"
dateFormatter.locale = Locale(identifier: "en_US_POSIX")
decoder.dateDecodingStrategy = .formatted(dateFormatter)

do {
    let item = try decoder.decode(Root.self, from: myJSON).item
    print(item)  // Iten(bool: true, decimal: 123.456, date: 2019-02-08 16:14:31 +0000, string: Hello there!, int: 148727)
}
catch {
    print(error)
}