Fatal error: Dictionary<String, Any> does not conform to Decodable because Any does not conform to Decodable

孤街浪徒 提交于 2019-12-01 17:39:41

Maybe you are misunderstanding how Codable works. It's based on concrete types. Any is not supported.

In your case you might create a struct like

struct Something: Decodable {
    let success : Bool
    let lastId : Int?
    let hasMore: Bool
    let foundEndpoint: URL
    let error: String?
}

And decode the JSON

func loadLocalJSON() {
    let url = Bundle.main.url(forResource: "localJSON", withExtension: "json")!
    let data  = try! Data(contentsOf: url)
    let colors = try! JSONDecoder().decode(Something.self, from: data)
    print(colors)
}

Any crash will reveal a design error. The sense of using null in a file in the main bundle is another question.

I used quicktype to generate Codables and marshaling code:

https://app.quicktype.io?gist=02c8b82add3ced7bb419f01d3a94019f&l=swift

I gave it an array of samples based on your sample data:

[
  {
    "success": true,
    "lastId": null,
    "hasMore": false,
    "foundEndpoint": "https://endpoint",
    "error": null
  },
  {
    "success": true,
    "lastId": 123,
    "hasMore": false,
    "foundEndpoint": "https://endpoint",
    "error": "some error"
  }
]

This tells quicktype to assume that the null values in your first sample are sometimes Int and String – you can change these if they aren't the possible types. The resulting Codable generated is:

struct Local: Codable {
    let success: Bool
    let lastID: Int?
    let hasMore: Bool
    let foundEndpoint: String
    let error: String?

    enum CodingKeys: String, CodingKey {
        case success
        case lastID = "lastId"
        case hasMore, foundEndpoint, error
    }
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!