我使用Perfect框架进行服务器端开发,我想为数据库和JSON响应/请求使用相同的模型(我需要排除/重命名某些字段)。 完美使用Codable协议和自己的DB解码器/编码器。 我尝试了下面的解决方案,但我不知道,也许有更好的解决方案?
struct User: Codable {
let id: Int
var username: String
var password: String
var fullName: String
enum CodingKeys: String, CodingKey {
case id
case username
case password
case fullName = "full_name"
}
init(from decoder: Decoder) throws {
if let options = encoder.userInfo[CodingOptions.key] as? CodingOptions {
if options.source == "JSON"
return try self.decodeFromJson(decoder:decoder)
}
} else {
...decoder code here..
}
}
}
struct CodingOptions {
let source: String
static let key = CodingUserInfoKey(rawValue: "a")!
init(source: String) {
self.source = source
}
}
let options = CodingOptions(source: "JSON")
let decoder = JSONDecoder()
ecoder.userInfo = [CodingOptions.key : options]
let user = try decoder.decode(User.self, from: jsonData)