Swift 4添加了新的 Codable
协议。当我使用 JSONDecoder
时,它似乎要求我的 Codable
类的所有非可选属性在 JSON 中都有键,否则就会抛出一个错误。
将类的每个属性都设置为可选似乎是一个不必要的麻烦,因为我真正想要的是使用 json 中的值或默认值。(我不希望财产为零。)
有办法吗?
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