首页 > 解决方案 > 如何使用 swift 4 和 struct 从字典中获取数据?

问题描述

struct family: Decodable {
    let userId: [String:Int]
}

class ViewController: UIViewController {

    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view, typically from a nib.
        let url = "http://supinfo.steve-colinet.fr/supfamily?action=login&username=admin&password=admin"
        let urlobj = URL(string: url)
        URLSession.shared.dataTask(with: urlobj!){(data, response, error) in
            do{
                let member = try JSONDecoder().decode(family.self, from: data!)
                print(member)
            }catch{
                print(error)
            }
        }.resume()
    }
}

错误:

keyNotFound(CodingKeys(stringValue: "userId", intValue: nil), Swift.DecodingError.Context(codingPath: [], debugDescription: "No value associated with key CodingKeys(stringValue: \"userId\", intValue: nil) (\ "userId\").",基础错误:nil))

标签: jsonswiftcodable

解决方案


问题是userId密钥嵌套在 JSON 响应中。您需要从其根目录解码响应。

struct Family: Decodable {
    let id: Int
    let name: String
}

struct User: Codable {
    let userId: Int
    let lasName: String
    let firstName: String
}

struct RootResponse: Codable {
    let family: Family
    let user: User
}

class ViewController: UIViewController {

    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view, typically from a nib.
        let url = "http://supinfo.steve-colinet.fr/supfamily?action=login&username=admin&password=admin"
        let urlobj = URL(string: url)
        URLSession.shared.dataTask(with: urlobj!){(data, response, error) in
            do{
                let rootResponse = try JSONDecoder().decode(RootResponse.self, from: data!)
                print(rootResponse)
            }catch{
                print(error)
            }
        }.resume()
    }
}

推荐阅读