无法使用JSONSerialization打印特定的嵌套json数据

问题描述 投票:-1回答:1

我正在进行api调用以获取一些数据,json dataAsString看起来像这样...

   guard let dataAsString = String(data: data, encoding: .utf8)else {return}
     print(dataAsString)

JSON数据

{"patch_report":{"name":"macOS Updates","patch_software_title_id":"1","total_computers":"5","total_versions":"1","versions":{"version":{"software_version":"10.15.3","computers":{"size":"5","computer":{"id":"467","name":"EPART1BGF8J9"}}}}}}
     do {
            // make sure this JSON is in the format we expect
            if let json = try JSONSerialization.jsonObject(with:data, options:[]) as? [String: Any] {
                // try to read out a string array
                if let patch_report = json["patch_report"] as? [String] {
                    print(patch_report)
                }
            }
        } catch let error as NSError {
            print("Failed to load: \(error.localizedDescription)")
        }

我如何使用JSONSerialization仅获取某些嵌套的JSON值?许多人告诉我不要使用JSONSerialization,因此我提供了替代解决方案。下面还有Codable解决方案。Click Here For An Explination - Using Codable with nested JSON

我能够在下面找到答案...

使用JSONSerialization获取嵌套JSON

        do {
            // make sure this JSON is in the format we expect
            if let json = try JSONSerialization.jsonObject(with:data, options:[]) as? [String: Any] {
                // try to read out a string array
                if let patch_report = json["patch_report"] as? [String:Any] {
                    if let versions = patch_report["versions"] as? [String:Any] {
                        if let version = versions["version"] as? [String:Any] {
                            if let software_version = version["software_version"] as? String {
                                print(software_version)
                            }
                        }}

                }    else {print("Not Available")}
            }
        } catch let error as NSError {
            print("Failed to load: \(error.localizedDescription)")
        }

使用解码器获取嵌套的Json

  struct PatchReport: Codable {

        var patch_report:Patch_report?

        enum CodingKeys: String, CodingKey{
            case patch_report = "patch_report"
        }

        struct Patch_report: Codable {

        var name:String?
        var patch_software_title_id:String?
        var total_computers:String?
        var total_versions:String?
        var versions: Versions?

        enum CodingKeys: String, CodingKey {
            case name = "name"
            case patch_software_title_id = "patch_software_title_id"
            case total_computers = "total_computers"
            case total_versions = "total_versions"
            case versions = "versions"
        }

        struct Versions: Codable {
            var version: Version?

            enum CodingKeys: String, CodingKey {
                case version = "version"
            }


        struct Version: Codable {
            var software_version:String?
            var computers:Computers?

            enum CodingKeys: String, CodingKey {
                case software_version = "software_version"
                case computers = "computers"
            }

            struct Computers: Codable{
                      var size:String?
                      var computer:Computer?

                enum CodingKeys: String, CodingKey {
                    case size = "size"
                    case computer = "computer"
                }

                struct Computer: Codable{
                    var id:String?
                    var name:String?

                    enum CodingKeys: String, CodingKey {
                        case id = "id"
                        case name = "name"
                            }
                        }
                  }
            }
        }
    }
}
let response = try! JSONDecoder().decode(PatchReport.self, from: data)
print(String(response.patch_report?.total_computers ?? ""))
json swift string-parsing
1个回答
1
投票
您正在尝试将patch_report强制转换为String,但无法使用。请尝试以下方法:

if let patch_report = json["patch_report"] as? [String: Any] { print(patch_report["name"]) }

© www.soinside.com 2019 - 2024. All rights reserved.