简体   繁体   English

Api 调用返回错误 **keyNotFound...**

[英]Api call returning error **keyNotFound…**

I am trying to make api call, I am building api in query and parsing it as usual, but I am getting error:我正在尝试进行 api 调用,我正在查询中构建 api 并像往常一样解析它,但我收到错误:

keyNotFound(CodingKeys(stringValue: "locationType", intValue: nil), Swift.DecodingError.Context(codingPath: [_JSONKey(stringValue: "Index 0", intValue: 0)], debugDescription: "No value associated with key CodingKeys(stringValue: "locationType", intValue: nil) ("locationType").", underlyingError: nil) **) keyNotFound(CodingKeys(stringValue: "locationType", intValue: nil), Swift.DecodingError.Context(codingPath: [_JSONKey(stringValue: "Index 0", intValue: 0)], debugDescription: "No value associated with key CodingKeys(stringValue :“locationType”,intValue:nil)(“locationType”)。”,基础错误:nil) **)

Fetch data:获取数据:

func fetchData(completionHandler: @escaping ([Root]) -> Void) {
    
    let queryItems = [URLQueryItem(name: "lat", value: "51.176519"),URLQueryItem(name: "lng", value: "-0.622557"),URLQueryItem(name: "date", value: "2020-11")]
    var urlComponents = URLComponents(string: "https://data.police.uk/api/crimes-street/all-crime")
    urlComponents?.queryItems = queryItems
    guard let combinedUrl = urlComponents?.url else {return}
    print(combinedUrl)
    let task = URLSession.shared.dataTask(with: combinedUrl,completionHandler : { (data, response, error) in
        if let error = error {
            print("Error with fetching accounts: \(error)")
            return
        }
        guard let httpResponse = response as? HTTPURLResponse,
              (200...400).contains(httpResponse.statusCode) else {
            print("Error with the response , unexpected status code:\(response)")
            return
        }
        guard let data = data else {return}
        do {
            let decoder = JSONDecoder()
            let dataSummary = try decoder.decode([Root].self, from: data)
            completionHandler(dataSummary.self ?? [])
        } catch {
            print(error)
        }
    })
    task.resume()
}

ViewController:视图控制器:

    override func viewDidLoad() {
    super.viewDidLoad()
    networking.fetchData{[weak self] (jsonValues) in
        self?.jsonValues = jsonValues ;print("JSON values Inside closure : \(jsonValues)")
    }
    print("JSON values outside closure: \(jsonValues)")
}

Root struct:根结构:

public struct Root: Codable {
public let category, location_Type: String
public let location: Location
public let context: String
public let outcomeStatus: OutcomeStatus
public let persistentId: String
public let id: Int
public let locationSubtype, month: String
public init(category: String, locationType: String, location: Location, context: String, outcomeStatus: OutcomeStatus, persistentId: String, id: Int, locationSubtype: String, month: String) {
    self.category = category
    self.locationType = locationType
    self.location = location
    self.context = context
    self.outcomeStatus = outcomeStatus
    self.persistentId = persistentId
    self.id = id
    self.locationSubtype = locationSubtype
    self.month = month
}

} }

Any help would be amazing!任何帮助都会很棒!

The error was suggesting that it found nil in API response, as I did not took for account that the response can be nil I had made values in Root struct optional ,then it successfully parsed.该错误表明它在 API 响应中找到 nil,因为我没有考虑到响应可以是nil我在Root struct 中设置了可选值,然后它成功解析。

public let category, location_Type: String?
public let location: Location
public let context: String
public let outcomeStatus: OutcomeStatus?
public let persistentId: String?
public let id: Int
public let locationSubtype, month: String?

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM