微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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

如何解决如果存在类型不匹配错误,是否可以将变量解码为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

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。