在我的项目中使用Alamofire库。如果失败我想从服务器获取所有可能的信息,为什么,不仅是Alamofire制作的Error对象,而是完整的原始字符串或json。我怎么能得到它?
答案 0 :(得分:17)
以下是Alamofire官方网站上的演示。即使请求出错,您也可以从服务器获取
response.response.data
的所有JSON或字符串。
Alamofire.request("https://httpbin.org/get").response { request in
print("Request: \(response.request)")
print("Response: \(response.response)")
print("Error: \(response.error)")
print("Timeline: \(response.timeline)")
if let data = response.data, let utf8Text = String(data: data, encoding: .utf8) {
print("Data: \(utf8Text)")
}
}
response.error用于简化代码。