7

我正在尝试使用 swift 4 来解析本地 json 文件:

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

这是我正在使用的功能:

    func loadLocalJSON() {

        if let path = Bundle.main.path(forResource: "localJSON", ofType: "json") {
            let url = URL(fileURLWithPath: path)

            do {
                let data  = try Data(contentsOf: url)
                let colors = try JSONDecoder().decode([String: Any].self, from: data)
                print(colors)
            }
            catch { print("Local JSON not loaded")}
        }
    }
}

但我不断收到错误:

致命错误:Dictionary 不符合 Decodable,因为 Any 不符合 Decodable。

我尝试在此 stackoverflow 页面上使用“AnyDecodable”方法:How to decode a property with type of JSON dictionary in Swift 4 decodeable protocol 但它会跳转到“catch”语句: catch { print("Local JSON not loaded")使用时。有谁知道如何在 Swift 4 中解析这个 JSON 数据?

4

2 回答 2

4

我使用quicktype来生成 Codables 和编组代码:

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

我根据您的样本数据给了它一个样本数组:

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

这告诉 quicktype 假设null您的第一个样本中的值有时是- 如果它们不是可能的类型,您可以更改它们IntString生成的结果 Codable 是:

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
    }
}
于 2018-02-28T00:14:28.973 回答
4

也许你误解了它是如何Codable工作的。它基于具体类型。Any不支持。

在您的情况下,您可能会创建一个类似的结构

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

并解码 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)
}

任何崩溃都会显示设计错误。null在主包中的文件中使用的意义是另一个问题。

于 2018-02-27T21:52:56.847 回答