首页 > 解决方案 > 尝试使用 CodingKeys 解码时出错

问题描述

这是我的结构

import Foundation
struct Settings: Hashable, Decodable{
    var Id = UUID()
    var userNotificationId : Int
}

编码键

    private enum CodingKeys: String, CodingKey{
        **case userNotificationId = "usuarioNotificacionMovilId"** (this is the line that gets me errors)

}

在里面

init(userNotificationId: Int){

        self.userNotificationId = userNotificationId
    }

解码器

 init(from decoder: Decoder) throws{
        let container = try decoder.container(keyedBy: CodingKeys.self)
        userNotificationId = try container.decodeIfPresent(Int.self, forKey: .userNotificationId) ?? 0
}

编码器

init(from encoder: Encoder) throws{


  var container = encoder.container(keyedBy: CodingKeys.self)
    try container.encode(userNotificationId, forKey: .userNotificationId)
}

我在编码方法中收到以下错误

'self' 在所有存储的属性被初始化之前使用

标签: swiftcodable

解决方案


应该是什么init(from encoder: Encoder)?您不符合Encodable,如果是,则需要实现func encode(to encoder: Encoder) throws,而不是另一个初始化程序。

也就是说,您的显式实现init(from decoder: Decoder) throws与编译器将为您合成的内容没有什么不同,因此最好也将其完全删除。

struct Settings: Hashable, Decodable {
    let id = UUID()
    let userNotificationId: Int

    private enum CodingKeys: String, CodingKey{
        case userNotificationId = "usuarioNotificacionMovilId"
    }

    init(userNotificationId: Int) {
        self.userNotificationId = userNotificationId
    }
}

可能就是你所需要的。


推荐阅读