Swift 4 ha aggiunto il nuovo Codable
protocollo. Quando lo uso JSONDecoder
sembra richiedere che tutte le proprietà non facoltative della mia Codable
classe abbiano chiavi in JSON o genera un errore.
Rendere facoltativa ogni proprietà della mia classe sembra una seccatura non necessaria poiché quello che voglio veramente è usare il valore nel json o un valore predefinito. (Non voglio che la proprietà sia nulla.)
C'è un modo per fare questo?
class MyCodable: Codable {
var name: String = "Default Appleseed"
}
func load(input: String) {
do {
if let data = input.data(using: .utf8) {
let result = try JSONDecoder().decode(MyCodable.self, from: data)
print("name: \(result.name)")
}
} catch {
print("error: \(error)")
// `Error message: "Key not found when expecting non-optional type
// String for coding key \"name\""`
}
}
let goodInput = "{\"name\": \"Jonny Appleseed\" }"
let badInput = "{}"
load(input: goodInput) // works, `name` is Jonny Applessed
load(input: badInput) // breaks, `name` required since property is non-optional