Как пройти через Json с помощью SwiftyJson - PullRequest
0 голосов
/ 12 марта 2019

как мне извлечь все значения с ключом "текст" в файле json ниже, используя SwiftyJson?Это ответ от Microsoft распознавания текста когнитивных служб.

{
"language": "de",
"textAngle": 0,
"orientation": "Up",
"regions": [
    {
        "boundingBox": "353,597,1926,1277",
        "lines": [
            {
                "boundingBox": "1091,597,410,93",
                "words": [
                    {
                        "boundingBox": "1091,604,106,84",
                        "text": "Ka"
                    },
                    {
                        "boundingBox": "1210,597,291,93",
                        "text": "uflond"
                    }
                ]
            },
            {
                "boundingBox": "1122,861,358,89",
                "words": [
                    {
                        "boundingBox": "1122,866,174,84",
                        "text": "Kauf"
                    },
                    {
                        "boundingBox": "1314,865,21,85",
                        "text": "I"
                    },
                    {
                        "boundingBox": "1348,861,132,87",
                        "text": "and"
                    }
                ]
            },
            {
                "boundingBox": "948,982,649,81",
                "words": [
                    {
                        "boundingBox": "948,986,398,77",
                        "text": "Schwabenp"
                    },
                    {
                        "boundingBox": "1359,984,19,74",
                        "text": "I"
                    },
                    {
                        "boundingBox": "1393,986,131,69",
                        "text": "atz"
                    },
                    {
                        "boundingBox": "1546,982,51,74",
                        "text": "LI"
                    }
                ]
            },
            {
                "boundingBox": "944,1088,665,80",
                "words": [
                    {
                        "boundingBox": "944,1089,220,79",
                        "text": "70563"
                    },
                    {
                        "boundingBox": "1210,1088,399,75",
                        "text": "Stutt

файл json намного больше, и есть много значений с ключевым «текстом» с разной глубиной, и я не знаю, как мне перебирать все тело Json!спасибо за вашу помощь

1 Ответ

0 голосов
/ 12 марта 2019

Согласуйте все ваши объекты с Codable, а затем просто откопайте их по мере необходимости, как только вы создадите экземпляры, например, с классом оболочки TextDto:

class TextDto: Codable {
    let language: String
    let textAngle: Int
    let orientation: String
    let regions: [Region]

    init(language: String, textAngle: Int, orientation: String, regions: [Region]) {
        self.language = language
        self.textAngle = textAngle
        self.orientation = orientation
        self.regions = regions
    }
}

class Region: Codable {
    let boundingBox: String
    let lines: [Line]

    init(boundingBox: String, lines: [Line]) {
        self.boundingBox = boundingBox
        self.lines = lines
    }
}

class Line: Codable {
    let boundingBox: String
    let words: [Word]

    init(boundingBox: String, words: [Word]) {
        self.boundingBox = boundingBox
        self.words = words
    }
}

class Word: Codable {
    let boundingBox, text: String

    init(boundingBox: String, text: String) {
        self.boundingBox = boundingBox
        self.text = text
    }
}

Получив TextDto из API, вы можете зациклить все lines и words с .forEach {} замыканиями или for...in циклами, как считаете нужным

...