这是我的结构
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)
}
在编码方法中出现以下错误
在所有存储属性初始化之前使用的“自我”
答案 0 :(得分:0)
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
}
}
可能就是您所需要的。