Как отобразить Json Response, используя метод get - PullRequest
0 голосов
/ 27 июня 2019

Вот мой ответ, и я хочу напечатать ответ, используя массив. Я хочу взять некоторые детали в ответе, такие как «Id» и «available» и «leaves», и я должен показать их в метке в моем VC * 1001.*

{
"id": 1,
"emp_id": "001",
"termination_date": "active",
"blood_group": "A+",
"rating": 0,
"noOfStars": 0,
"starOfMonth": false,
"gender": "Female",
"expertise": "",
"experience": "",
"leaves": 0,
"available": 5,
"compoff": 0,
"earnedLeaves": null,
"wfh": 0

}

мой код

struct jsonstruct8:Decodable  {

var available: String
var leaves: String

}

var arrdata = [jsonstruct8]()


func getdata(){
    let url = URL(string: "MY URL")
    URLSession.shared.dataTask(with: url!) { (data, response, error )in
        do{if error == nil{

            self.arrdata = try JSONDecoder().decode([jsonstruct8].self, from: data!)

            for mainarr in self.arrdata{
            print(mainarr.available,":",mainarr.leaves)
            print(data)
            }
            }

        }catch{
            print("Error in get json data")
        }

        }.resume()
}

Я получаю «Ошибка в получении данных JSON»

1 Ответ

1 голос
/ 27 июня 2019

Образец JSON:

  {
    "id": 1,
    "emp_id": "001",
    "termination_date": "active",
    "blood_group": "A+",
    "rating": 0,
    "noOfStars": 0,
    "starOfMonth": false,
    "gender": "Female",
    "expertise": "",
    "experience": "",
    "leaves": 0,
    "available": 5,
    "compoff": 0,
    "earnedLeaves": null,
    "wfh": 0
  }

Модель:

struct Employee: Codable {
    let id: Int
    let empId: String
    let terminationDate: String
    let available: Int
    let leaves: Int
    //add other properties as well....
}

Синтаксический анализ:

if let data = data {
    if let data = data {
        do {
            let decoder = JSONDecoder()
            decoder.keyDecodingStrategy = .convertFromSnakeCase
            var employee = try JSONDecoder().decode(Employee.self, from: data)
            print("\(employee.available) : \(employee.leaves)") //here you can modify then employee details...
        } catch  {
            print(error)
        }
    }
}

Редактировать:

Всегда обновлять пользовательский интерфейс основной поток .

DispatchQueue.main.async {
    self.totalLeaves.text = "\(employee.leaves)"
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...