首页 > 解决方案 > 解码 JSON 时出错,Swift 4.2

问题描述

在 swift 4.2 中解码 JSON 时出现错误

预期解码 Array 但找到了字典。

我的 JSON 模型:

public struct NewsSource: Equatable, Decodable {

public let id: String?
public let name: String?
public let sourceDescription: String?
public let url: URL?

enum CodingKeys: String, CodingKey {
    case id
    case name
    case sourceDescription = "description"
    case url

}

public init(id: String,
            name: String,
            sourceDescription: String,
            url: URL,
            category: NewsCategory,
            language: NewsLanguage,
            country: NewsCountry) {
    self.id = id
    self.name = name
    self.sourceDescription = sourceDescription
    self.url = url
} }

我如何获取 JSON:

func fetchJSON() {

let urlString = "https://newsapi.org/v2/sources?apiKey=myAPIKey"

guard let url = URL(string: urlString) else { return }
    URLSession.shared.dataTask(with: url) { (data, _, err) in
        DispatchQueue.main.async {
            if let err = err {
                print("Failed to get data from url:", err)
                return
            }

            guard let data = data else { return }
            print(data)
            do {

                let decoder = JSONDecoder()
                decoder.keyDecodingStrategy = .convertFromSnakeCase

                self.Sources = try decoder.decode([NewsSource].self, from: data)
                self.tableView.reloadData()

            } catch let jsonErr {
                print("Failed to decode:", jsonErr)
            }
        }
        }.resume()
}

标签: iosjsonswiftswift4.2jsondecoder

解决方案


如果您查看正在返回的 JSON,它看起来像这样:

{
    "status": "ok",
    "sources": [{
        "id": "abc-news",
        "name": "ABC News",
        "description": "Your trusted source for breaking news, analysis, exclusive interviews, headlines, and videos at ABCNews.com.",
        "url": "https://abcnews.go.com",
        "category": "general",
        "language": "en",
        "country": "us"
    }, {
        "id": "abc-news-au",
        "name": "ABC News (AU)",
        "description": "Australia's most trusted source of local, national and world news. Comprehensive, independent, in-depth analysis, the latest business, sport, weather and more.",
        "url": "http://www.abc.net.au/news",
        "category": "general",
        "language": "en",
        "country": "au"
    }, 
    ...

虽然有一个源数组,但该数组不是根。JSON 的根是一个包含status字符串和sources数组的对象。这就是解码器失败的原因。

您需要定义一个额外的结构来处理这个:

struct NewsResult {
    let status: String
    let sources: [NewsSource]
}

然后你解码这个对象:

let sourceResult = try decoder.decode(NewsResult.self, from: data)
self.sources = sourceResult.sources

推荐阅读