我想将JSON字符串解码为People
,如下所示。age
是数字(Int
)类型,下面的代码出现错误:
"Expected to decode Dictionary<String, Any> but found a number instead."
我认为这意味着@Age
被当作Dictionary<String, Any>
对待。
有没有办法将JSON值解码为PropertyWrapper
属性?
let jsonString =
"""
{
"name": "Tim",
"age": 28
}
"""
@propertyWrapper
struct Age: Codable {
var age: Int = 0
var wrappedValue: Int {
get {
return age
}
set {
age = newValue * 10
}
}
}
struct People: Codable {
var name: String
@Age var age: Int
}
let jsonData = jsonString.data(using: .utf8)!
let user = try! JSONDecoder().decode(People.self, from: jsonData)
print(user.name)
print(user.age)
发布于 2020-05-13 18:17:36
多亏了这条评论,添加这个使它工作。
extension People {
init(from decoder: Decoder) throws {
let values = try decoder.container(keyedBy: CodingKeys.self)
name = try values.decode(String.self, forKey: .name)
age = try values.decode(Int.self, forKey: .age)
}
}
https://stackoverflow.com/questions/61771805
复制相似问题