0

我想将 JSON 字符串解码People为如下。ageis number( 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)
4

1 回答 1

0

感谢评论,添加它使其工作。

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)
    }
}
于 2020-05-13T10:17:35.663 回答