我尝试使用Alamofire调用POST Api,但它向我显示格式错误。
这是我的JSON响应:
[
{
"_source": {
"nome": "LOTERIAS BELEM",
"endereco": "R DO COMERCIO, 279",
"uf": "AL",
"cidade": "BELEM",
"bairro": "CENTRO"
},
"_id": "010177175"
},
{
"_source": {
"nome": "Bel Loterias"
},
"_id": "80224903"
},
{
"_source": {
"nome": "BELLEZA LOTERIAS",
"endereco": "R RIVADAVIA CORREA, 498",
"uf": "RS",
"cidade": "SANTANA DO LIVRAMENTO",
"bairro": "CENTRO"
},
"_id": "180124986"
}
]
class Album: Codable {
var _source : [_source]
}
class _source: Codable {
var nome : String
var endereco : String
var uf : String
var cidade : String
var bairro : String
}
var arrList = [Album]()
这就是我尝试使用Alamofire进行解码的方式。
func request() {
let urlString = URL(string: "My Url")
// Alamofire.request(url!).responseJSON {(response) in
Alamofire.request(urlString!, method: .post, parameters: ["name": "belem"],encoding: JSONEncoding.default, headers: nil).responseJSON {
(response) in
switch (response.result) {
case .success:
if let data = response.data {
do {
let response = try JSONDecoder().decode([Album].self, from: data)
DispatchQueue.main.async {
self.arrList = response
}
}
catch {
print(error.localizedDescription)
}
}
case .failure( let error):
print(error)
}
}
}
答案 0 :(得分:0)
我建议您使用json4swift.com。您只需要复制json并粘贴在那里。它将根据您的json自动创建模式结构或类。
回到您的问题,您的班级相册没有[_source]数组。这就是您收到以下错误的原因:“由于格式不正确,无法读取数据。”
尝试使用以下给定的相册课程格式,
reading
请尝试避免在Swift中使用下划线。
答案 1 :(得分:0)
您的Album
模型不正确。
struct Album: Codable {
var source : Source
var id : String
enum CodingKeys: String, CodingKey {
case source = "_source"
case id = "_id"
}
}
struct Source: Codable {
var nome : String
var endereco : String?
var uf : String?
var cidade : String?
var bairro : String?
}
如果您完全不希望_id
,则只需删除相关部分。
至于与您的Alamofire
相关的代码,那部分很好。
显着改进:
CodingKeys
来实现键映射,避免了模型中带下划线的变量名_source
为Source
)