gpt4 book ai didi

json - 用结构解码未命名的JSON数组swift 4

转载 作者:搜寻专家 更新时间:2023-11-01 05:44:48 25 4
gpt4 key购买 nike

我一直在尝试为我必须解码 JSON 的应用程序解码数组。

我只是无法用我的实际结构和我之前尝试过的其他结构对其进行解码。

这是我最新的结构:

struct peticion: Decodable{
let datos_conexion: datos_conexion
let estado_lanzamiento: estado_lanzamiento
let usuario: usuario
}

struct datos_conexion: Decodable {
let conexion: datosConexion
}

struct datosConexion: Decodable{
let datos_conexion: String
}

struct estado_lanzamiento: Decodable{
let tiempo_restante: String
let etapa_actual: String
}

struct usuario: Decodable {
let Id: Int
let Nombre: String
let Password: String
let Imagen: String
let Puesto: String
let Departamento: String
}

请求中的 JSON 完整示例

[
{
"datos_conexion": {
"conexion": "2019-05-27 17:05:45"
}
},
{
"estado_lanzamiento": {
"tiempo_restante": 240,
"etapa_actual": "Configuracion"
}
},
{
"usuario": [
{
"Id": "4",
"Nombre": "This is the Name",
"Email": "email@gmail.com",
"Password": "1234",
"Imagen": "default.jpg",
"Puesto": "",
"Departamento": "Etapa Final"
}
]
}
]

解码代码

URLSession.shared.dataTask(with: url2) { (data, resp, err) in
guard let data = data else{return}
let dataAsString = String(data: data, encoding: .utf8)
// print(dataAsString)
do {
let JSONDATA = try JSONDecoder().decode([peticion].self, from: data)
// print(data)
} catch let jsonErr {
print("cant decode", jsonErr)
}

尝试这样做的错误:

typeMismatch(Swift.Array, Swift.DecodingError.Context(codingPath: [], debugDescription: "Expected to decode Array but found a dictionary instead.", underlyingError: nil))

typeMismatch(Swift.Array, Swift.DecodingError.Context(codingPath: [], debugDescription: "Expected to decode dictionary but found an Array instead.", underlyingError: nil))

最佳答案

根据您的 JSON,您收到一个 [[String: Any]],它是包含 Any 的 DictionariesArray 值和 String 键。这很棘手,因为字典包含不可解码的 Any 值。另外,容器是Array,通常我们会有一个Dictionary作为容器。

通常,我们会简化此响应。但在这种情况下我们不能。

解码的一种方法是:


struct Peticion: Decodable{
let datosConexion: DatosConexion
let estadoLanzamiento: EstadoLanzamiento
let usuario: [Usuario]

init(from decoder : Decoder) throws {
//unkeyed because we are getting an array as container
var unkeyedContainer = try decoder.unkeyedContainer()
let datosConexionWrapper = try unkeyedContainer.decode(DatosConexionWrapper.self)

let estadoLanzamientoWrapper = try unkeyedContainer.decode(EstadoLanzamientoWrapper.self)
let usuarioWrapper = try unkeyedContainer.decode(UsuarioWrapper.self)

datosConexion = datosConexionWrapper.datosConexion
estadoLanzamiento = estadoLanzamientoWrapper.estadoLanzamiento
usuario = usuarioWrapper.usuario

}
}


//use wrappers to handle the outer dictionary
struct DatosConexionWrapper: Decodable{
let datosConexion: DatosConexion

enum CodingKeys: String, CodingKey{
case datosConexion = "datos_conexion"
}
}

struct DatosConexion: Decodable{
let conexion: String
}



struct EstadoLanzamientoWrapper: Decodable{
let estadoLanzamiento: EstadoLanzamiento

enum CodingKeys: String, CodingKey{
case estadoLanzamiento = "estado_lanzamiento"
}
}

struct EstadoLanzamiento: Decodable{
let tiempoRestante: Int
let etapaActual: String

enum CodingKeys: String, CodingKey {
case tiempoRestante = "tiempo_restante"
case etapaActual = "etapa_actual"
}
}

struct UsuarioWrapper: Decodable{
let usuario: [Usuario]

}

struct Usuario: Decodable{
let id: String
let nombre: String
let email: String
let password: String
let imagen: String
let puesto: String
let departamento: String


enum CodingKeys: String, CodingKey {
case id = "Id"
case nombre = "Nombre"
case email = "Email"
case password = "Password"
case imagen = "Imagen"
case puesto = "Puesto"
case departamento = "Departamento"
}
}

解码代码//我只将解码类型更改为我的Peticion结构


URLSession.shared.dataTask(with: url2) { (data, resp, err) in
guard let data = data else{return}
let dataAsString = String(data: data, encoding: .utf8)
// print(dataAsString)
do {
let JSONDATA = try JSONDecoder().decode(Peticion.self, from: data)
// print(data)
} catch let jsonErr {
print("cant decode", jsonErr)
}

这是一个有趣的练习。这也是未经测试的代码,但我很确定它会起作用。

关于json - 用结构解码未命名的JSON数组swift 4,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56333106/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com