我已经设置了一个 API 来给出 JSON 响应,如下所示:
{
"key1": "success",
"key2": {
"int_val": 5,
"str_val": "email",
}
}
我已经阅读了这篇文章,但仍然不明白如何正确访问key1
。我尝试通过 [String : Any]
解码转换器中的数据,这会抛出一个不明确的类型错误:"表达式类型不明确"。
那么如何在下面的代码中阅读带有午睡的响应呢?
service.resource("").request(.post, json: userJSON).onSuccess{ entity in
guard let data = entity.content as? Data else {
return
}
print(data)
}
你可以试试Decodable
struct Root:Decodable (
let key1:String
let key2:InnerItem
}
struct InnerItem:Decodable {
let intVal:Int
let strVal:String
}
do {
let decoder = JSONDecoder()
decoder.keyDecodingStrategy = .convertFromSnakeCase
let res = decoder.decode(Root.self,from:data)
print(res.key1)
}
catch {
print(error)
}
将数据对象解析为表示 JSON 响应的字典。
let json = try JSONSerialization.jsonObject(with: data!, options: []) as? [String : Any]
if let key1 = json["key1"] as? String {
print(key1)
}
Siesta中包含的示例项目有很多配置JSON解码到模型的示例。例如,如果您有 @Sh_Khan 答案中的Root
和InnerItem
类型:
let decoder = JSONDecoder()
decoder.keyDecodingStrategy = .convertFromSnakeCase
service.configureTransformer(“/somepath") {
try jsonDecoder.decode([Root].self, from: $0.content)
}
与其他答案的重要区别是使用service.configureTransformer
。配置转换器不是每次使用时都解析响应,而是意味着它只解析一次,每个人都可以看到解析的结果——每个onSuccess
,每个查看resource.latestData
的人,等等。