Как проанализировать значение ключа JSON с Codable? - PullRequest
0 голосов
/ 22 февраля 2019

Я хочу декодировать этот JSON с помощью Codable.Без выделения желтого цвета это решение работало, но если выделенный раздел поступает с сервера, кодируемый не работает.Пожалуйста, помогите мне.

enter image description here

Мое решение:

    let others : [String: OthersType?]?



    enum OthersType: Codable {
    case int(Int)
    case string(String)
    case bool(Bool)

    init(from decoder: Decoder) throws {
        let container = try decoder.singleValueContainer()

        do {
            self = try .int(container.decode(Int.self))
        } catch DecodingError.typeMismatch {
            do {
                self = try .string(container.decode(String.self))
            } catch DecodingError.typeMismatch {
                do {
                    self = try .bool(container.decode(Bool.self))
                } catch DecodingError.typeMismatch {
                    throw DecodingError.typeMismatch(OthersType.self, DecodingError.Context(codingPath: decoder.codingPath, debugDescription: "Encoded payload not of an expected type"))
                }
            }
        }
    }

    func encode(to encoder: Encoder) throws {
        var container = encoder.singleValueContainer()
        switch self {
        case .int(let int):
            try container.encode(int)
        case .string(let string):
            try container.encode(string)
        case .bool(let bool):
            try container.encode(bool)
        }
    }

    func getValue(_ ofTheWord: OthersType) -> String {
        var result = String(describing: ofTheWord)
        if result.contains("string(") {
            result = result.replacingOccurrences(of: "string(\"", with: "")
            result.removeLast(2)

        } else if result.contains("int(") {
            result = result.replacingOccurrences(of: "int(", with: "")
            result.removeLast(1)

        } else if result.contains("bool(") {
            result = result.replacingOccurrences(of: "bool(", with: "")
            result.removeLast(1)
        }
        return result
    }
}

Как решить эту проблему сСвифт кодируемый?

1 Ответ

0 голосов
/ 22 февраля 2019

Пожалуйста, ознакомьтесь с этим Gist, который я создал для анализа JSON на основе динамического ключа через Decodable.https://gist.github.com/aksswami/f30007b71fe78a6d99fff583b38cc480

Вы также можете просмотреть этот обширный ресурс, чтобы узнать больше о кодируемых основах.https://benscheirman.com/2017/06/swift-json/

...