-2
在我的項目中使用Alamofire庫。如果失敗,我想從服務器獲取所有可能的信息,不僅是Alamofire生成的Error對象,還包括完整的原始字符串或json。我怎麼能得到它?使用alamofire如何獲得原始字符串的響應
在我的項目中使用Alamofire庫。如果失敗,我想從服務器獲取所有可能的信息,不僅是Alamofire生成的Error對象,還包括完整的原始字符串或json。我怎麼能得到它?使用alamofire如何獲得原始字符串的響應
這是Alamofire官方網站上的演示。你可以得到所有的JSON或字符串從您的服務器response.response.data,甚至要求得到一個錯誤
Alamofire.request("https://httpbin.org/get").response { response in
print("Request: \(response.request)")
print("Response: \(response.response)")
print("Error: \(response.error)")
if let data = response.data, let utf8Text = String(data: data, encoding: .utf8) {
print("Data: \(utf8Text)")
}
}`
的response.error用於簡化你的代碼