gpt4 book ai didi

ios - 在 json 中返回的错误解码数组 - swift

转载 作者:行者123 更新时间:2023-11-28 07:18:28 27 4
gpt4 key购买 nike

当试图解码对象数组“arquivo”的返回值时,始终为 nil

import UIKit

struct pessoa: Codable {
let idPessoa: Int
let nome: String
let cpf: String
let email: String
let dtaNascimento: String
let dtaCadastro: String
let telefone: String
let status: Int

}
struct arquivo: Codable {
let idArquivo: Int
let caminho: String
let nome: String
let descricao: String
let tamanho: Double
let idPessoa: Int
let idOcorrencia: Int

enum CodingKeys: String, CodingKey {
case idArquivo
case caminho
case nome
case descricao
case tamanho
case idPessoa
case idOcorrencia
}
}
struct PessoaDTO: Codable {
let pessoa: pessoa!
let arquivo: Array<arquivo>!

enum CodingKeys: String, CodingKey {
case pessoa = "pessoa"
case arquivo = "arquivo"
}
}

var json = """
{
"pessoa":
{
"idPessoa": 89,
"nome": "Arnaldo",
"cpf": "816.404.648-44",
"email": "testeocorrenciabus@google.com",
"dtaNascimento": "1969-01-01T03:00:00.000+0000",
"dtaCadastro": "2019-10-30T18:53:19.000+0000",
"telefone": "(54)58648-4464",
"status": 1,
"arquivo": [
{ "idArquivo": 91,
"caminho": "/images/u/1572461505454.jpg",
"nome": "1572461505454.jpg",
"descricao": "",
"tamanho": 31765,
"idPessoa": 89,
"idOcorrencia": 1
}
]
}
}
"""
do {
let decodedBeerObject = try JSONDecoder().decode(PessoaDTO.self, from: json.data(using: .utf8)!)
print(decodedBeerObject.pessoa)
print(decodedBeerObject.arquivo)

} catch let error {
print(error.localizedDescription)
}

结果:

Optional(__lldb_expr_51.pessoa(idPessoa: 89, nome: "Arnaldo", cpf: "816.404.648-44", email: "testeocorrenciabus@google.com", dtaNascimento: "1969-01-01T03:00:00.000+0000", dtaCadastro: "2019-10-30T18:53:19.000+0000", telefone: "(54)58648-4464", status: 1)) nil

最佳答案

您的模型不正确

arquivo 存在于 pessoa 中,不在同一级别。

正确的解析代码是:

struct Pessoa: Codable {
let idPessoa: Int
let nome: String
let cpf: String
let email: String
let dtaNascimento: String
let dtaCadastro: String
let telefone: String
let status: Int
let arquivo: Array<Arquivo>!

}
struct Arquivo: Codable {
let idArquivo: Int
let caminho: String
let nome: String
let descricao: String
let tamanho: Double
let idPessoa: Int
let idOcorrencia: Int
}
struct PessoaDTO: Codable {
let pessoa: Pessoa!

}

var json123 = """
{
"pessoa":
{
"idPessoa": 89,
"nome": "Arnaldo",
"cpf": "816.404.648-44",
"email": "testeocorrenciabus@google.com",
"dtaNascimento": "1969-01-01T03:00:00.000+0000",
"dtaCadastro": "2019-10-30T18:53:19.000+0000",
"telefone": "(54)58648-4464",
"status": 1,
"arquivo": [
{ "idArquivo": 91,
"caminho": "/images/u/1572461505454.jpg",
"nome": "1572461505454.jpg",
"descricao": "",
"tamanho": 31765,
"idPessoa": 89,
"idOcorrencia": 1
}
]
}
}
"""
do {
let decodedBeerObject = try JSONDecoder().decode(PessoaDTO.self, from: json123.data(using: .utf8)!)
print(decodedBeerObject.pessoa)
print(decodedBeerObject.pessoa.arquivo)

} catch let error {
print(error.localizedDescription)
}

关于ios - 在 json 中返回的错误解码数组 - swift,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58880465/

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