如果存在类型不匹配错误,是否可以将变量解码为nil

问题描述

所以基本上我想要的是在API返回的类型与模型期望使该属性为nil的类型不同的任何时候。

例如:

struct Person {
var name: String?
var someType: String?
}

如果API返回someType属性的数字而不是字符串,我只想使其值为nil

我知道我可以实现init(from decoder: Decoder)初始化程序,但是我必须为每个响应的每个属性设置它,这将花费很长时间。有没有更好更快的方法

解决方法

您可以为Optional String实现自己的encodeIfPresent,如果类型不匹配,则返回nil。这样,您将无需实现自定义初始化程序:

extension KeyedDecodingContainer {
    public func decodeIfPresent(_ type: String.Type,forKey key: KeyedDecodingContainer<K>.Key) throws -> String? {
        do {
            return try decode(String.self,forKey: key)
        } catch DecodingError.typeMismatch,DecodingError.keyNotFound {
            return nil
        }
    }
}

struct Person: Decodable {
    let name: String?
    let someType: String?
}

let json = #"{"name":"Steve","someType":1}"#
do {
    let person = try JSONDecoder().decode(Person.self,from: Data(json.utf8))
    person.name      // "Steve"
    person.someType  // nil
} catch {
    print(error)
}

enter image description here