使用 Json 解码器和 Alamofire 解码 Json 数据

Decode Json Data using JsonDecoder and Alamofire

我正在尝试将 Json 数据解码到我的模型中。 这是我的模型

struct Devices : Codable {
var id :String?
var description :String?
var status : Int?

}

 var heroes = Devices()
    print(DeviceId)
    let loginParam: [String: Any] = [
        "id": DeviceId
    ]
    let manager = Alamofire.SessionManager.default
    manager.session.configuration.timeoutIntervalForRequest = 5
    manager.request("http://13.13.13.004/website/api/Customer/DeviceControl", method: .post , parameters: loginParam, encoding: JSONEncoding.prettyPrinted)
        .responseData { response in
            let json = response.data

            do{
                let decoder = JSONDecoder()
                //using the array to put values
                heroes = try decoder.decode(Devices.self, from: json!)

            }catch let err{
                print(err)
            }

此代码未进入 catch 块。 但是英雄值 return 为零。 当我尝试使用 NsDictionary 给出结果。

这是一个常见的错误:您忘记了根对象

struct Root : Decodable {

    private enum  CodingKeys: String, CodingKey { case resultCount, devices = "results" }

    let resultCount : Int
    let devices : [Device]
}

并以单数形式命名设备结构(devicesDevice 个实例的数组)并将成员声明为非可选

struct Device : Decodable {
    var id : String
    var description : String
    var status : Int
}

...

var heroes = [Device]()

...

let result = try decoder.decode(Root.self, from: json!)
heroes = result.devices