1

我正在尝试更新我的应用程序以使用 Swift 4 Decodable - 并且正在从具有子值的 JSON api 中提取数据,这些子值可能是:

  • 子对象
  • 一个字符串
  • 一个整数

这是 Json Api 响应:

var jsonoutput =
"""
{
"id": "124549",
"key": "TEST-32",
"fields": {
"lastViewed": "2018-02-17T21:40:38.864+0000",
"timeestimate": 26640
}
}
""".data(using: .utf8)

我尝试使用以下方法对其进行解析:如果我只引用都是字符串的 id 和 key 属性,则该方法有效。

struct SupportDeskResponse: Decodable{
    var id: String
    var key: String
    //var fields: [String: Any] //this is commented out as this approach doesn't work - just generated a decodable protocol error.            
}

var myStruct: Any!
do {
    myStruct = try JSONDecoder().decode(SupportDeskResponse.self, from: jsonoutput!) 
} catch (let error) {
    print(error)
}

print(myStruct) 

如何将字段对象解码为我的结构?

4

1 回答 1

5

您应该创建一个采用 Decodable 协议的新结构,如下所示:

struct FieldsResponse: Decodable {
    var lastViewed: String
    var timeestimate: Int
}

然后您可以将其添加到您的 SupportDeskResponse

var fields: FieldsResponse
于 2018-02-18T09:48:21.987 回答