Как проанализировать объекты массива JSON с помощью SwiftyJSON? - PullRequest
0 голосов
/ 09 января 2019

У меня есть файл JSON, который содержит список объектов массива. Я не могу разобрать этот файл json

Я пробовал этот код, но он не работал

   if let tempResult = json[0]["sno"].string{
        print("Temp Result is \(tempResult)")
    }
    else {
        print(json[0]["sno"].error!) 
        print("Temp Result didn't worked")
    }

Вот мой JSON-файл

[
  {
  "sno": "21",
  "title": "title 1",
  "tableid": "table 1"
  },
  {
  "sno": "19",
  "title": "title 222",
  "tableid": "table 222"
  },
  {
   "sno": "3",
   "title": "title 333",
   "tableid": "table 333"
   }
]

Ответы [ 2 ]

0 голосов
/ 09 января 2019

Дитч SwiftyJSON и использование встроенного в Swift Codable вместо объектов модели:

typealias Response = [ResponseElement]

struct ResponseElement: Codable {
    let sno, title, tableid: String
}

do {
   let response = try JSONDecoder().decode(Response.self, from: data)
}
catch {
   print(error)
}

, где data - это необработанные данные JSON, полученные из вашего API.

0 голосов
/ 09 января 2019

На самом деле было бы лучше определить структуру для объекта в массиве.

public struct Item {

  // MARK: Declaration for string constants to be used to decode and also serialize.
  private struct SerializationKeys {
    static let sno = "sno"
    static let title = "title"
    static let tableid = "tableid"
  }

  // MARK: Properties

  public var sno: String?
  public var title: String?
  public var tableid: String?

  // MARK: SwiftyJSON Initializers
  /// Initiates the instance based on the object.
  ///
  /// - parameter object: The object of either Dictionary or Array kind that was passed.
  /// - returns: An initialized instance of the class.
  public init(object: Any) {
    self.init(json: JSON(object))
  }

  /// Initiates the instance based on the JSON that was passed.
  ///
  /// - parameter json: JSON object from SwiftyJSON.
  public init(json: JSON) {
    sno = json[SerializationKeys.sno].string
    title = json[SerializationKeys.title].string
    tableid = json[SerializationKeys.tableid].string
  }
}

И вам нужно сопоставить ваш массив JSON с объектами Item.

var items = [Item]()
if let arrayJSON = json.array
  items = arrayJSON.map({return Item(json: $0)})
}
...