预期对Dictionary <string,any =“”>进行解码,但是找到了一个带有嵌套容器的数组

时间:2018-10-27 18:03:18

标签: json swift parsing core-data codable

因此,我正在尝试使用Codable协议解析此JSON: https://randomuser.me/api/?results=100

基本上是100个随机用户。

这是我来自解码器的User类初始化程序,我需要它,因为User是Core Data Model中的实体:

required convenience public init(from decoder: Decoder) throws {
        let managedObjectContext = CoreDataStack.sharedInstance.persistentContainer.viewContext
        guard let entity = NSEntityDescription.entity(forEntityName: "User", in: managedObjectContext) else {
                fatalError("Failed to decode User")
        }

        self.init(entity: entity, insertInto: managedObjectContext)

        let container = try decoder.container(keyedBy: CodingKeys.self)
        let results = try container.nestedContainer(keyedBy: CodingKeys.self, forKey: .results)
        let name = try results.nestedContainer(keyedBy: CodingKeys.self, forKey: .name)
        firstName = try name.decode(String.self, forKey: .firstName)
        lastName = try name.decode(String.self, forKey: .lastName)

        let location = try results.nestedContainer(keyedBy: CodingKeys.self, forKey: .location)
        let street = try location.decode(String.self, forKey: .street)
        let city = try location.decode(String.self, forKey: .city)
        let postcode = try location.decode(String.self, forKey: .postcode)
        address = street + ", " + city + ", " + postcode

        email = try results.decode(String.self, forKey: .email)

        let pictures = try results.nestedContainer(keyedBy: CodingKeys.self, forKey: .pictures)
        pictureURL = try pictures.decode(String.self, forKey: .pictureURL)
    }

这是有缺陷的行:

let results = try container.nestedContainer(keyedBy: CodingKeys.self, forKey: .results)

这是完整的错误:

typeMismatch(Swift.Dictionary<Swift.String, Any>, Swift.DecodingError.Context(codingPath: [], debugDescription: "Expected to decode Dictionary<String, Any> but found an array instead.", underlyingError: nil))

我认为这是由于JSON的结构所致,即在“结果”键下包含100个元素的数组,我认为问题可能在于将它们全部在一起。 我该如何处理?

2 个答案:

答案 0 :(得分:2)

这是一个非常简化的版本,但是它可以正确处理您的Json数据

struct Result : Codable {
    let results: [User]
}
struct User: Codable {
    let gender: String
    let name: Name
}
struct Name: Codable {
    let title: String
    let first: String
    let last: String
}

let decoder = JSONDecoder()
let data = jsonString.data(using: .utf8) //Replace with url download

do {
    let json = try decoder.decode(Result.self, from: data!)
} catch {
    print(error)
}

答案 1 :(得分:0)

错误很明显:results的值是一个数组,nestedContainers需要一个字典。

要解码用户数组,您需要Core Data类之外的伞形结构。

struct Root : Decodable {
   let results: [User]
}

为每个数组项调用Root中的init方法中的User解码时。

要使用nestedContainers,您必须分开CodingKeys。

这是init方法,没有Core Data内容。 postcode可以是StringInt

private enum CodingKeys: String, CodingKey { case name, location, email, picture }
private enum NameCodingKeys: String, CodingKey { case first, last }
private enum LocationCodingKeys: String, CodingKey { case street, city, postcode }
private enum PictureCodingKeys: String, CodingKey { case large, medium, thumbnail }

required convenience public init(from decoder: Decoder) throws {
    let container = try decoder.container(keyedBy: CodingKeys.self)
    let nameContainer = try container.nestedContainer(keyedBy: NameCodingKeys.self, forKey: .name)
    let firstName = try nameContainer.decode(String.self, forKey: .first)
    let lastName = try nameContainer.decode(String.self, forKey: .last)

    let locationContainer = try container.nestedContainer(keyedBy: LocationCodingKeys.self, forKey: .location)
    let street = try locationContainer.decode(String.self, forKey: .street)
    let city = try locationContainer.decode(String.self, forKey: .city)
    let postcode : String
    do {
        let postcodeInt = try locationContainer.decode(Int.self, forKey: .postcode)
        postcode = String(postcodeInt)
    } catch DecodingError.typeMismatch {
        postcode = try locationContainer.decode(String.self, forKey: .postcode)
    }
    let address = street + ", " + city + ", " + postcode

    let email = try container.decode(String.self, forKey: .email)

    let pictureContainer = try container.nestedContainer(keyedBy: PictureCodingKeys.self, forKey: .picture)
    let pictureURL = try pictureContainer.decode(URL.self, forKey: .large)
}