尝试访问Alamofire中的错误代码 [英] Trying to access error code in Alamofire

查看:361
本文介绍了尝试访问Alamofire中的错误代码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用Alamofire4.

I am using an Alamofire 4. When I do

print(response.debugDescription)

我在控制台中有类似的内容:

I have something like this in the console:

[Request]: https://api2.website.com
[Response]: nil
[Data]: 0 bytes
[Result]: FAILURE: Error Domain=NSURLErrorDomain Code=-1009 "The Internet connection appears to be offline." UserInfo={NSUnderlyingError=0x17444ace0 {Error Domain=kCFErrorDomainCFNetwork Code=-1009 "(null)" UserInfo={NSErrorPeerAddressKey=<CFData 0x170490e50 [0x1ab165bb8]>{length = 16, capacity = 16, bytes = 0x100201bb341d1f890000000000000000}, _kCFStreamErrorCodeKey=57, _kCFStreamErrorDomainKey=1}}, NSErrorFailingURLStringKey=https://api2.flowwow.com/api2/client/info/?auth_token=da88d8aa49ff6f8bb4e1&hash=7f38be3f68db39a6d88687505fdb9ba5&partner_id=1004, NSErrorFailingURLKey=https://api2.website.com, _kCFStreamErrorDomainKey=1, _kCFStreamErrorCodeKey=57, NSLocalizedDescription=The Internet connection appears to be offline.}
[Timeline]: Timeline: { "Request Start Time": 510763454.078, "Initial Response Time": 510763455.293, "Request Completed Time": 510763455.293, "Serialization Completed Time": 510763455.297, "Latency": 1.215 secs, "Request Duration": 1.215 secs, "Serialization Duration": 0.005 secs, "Total Duration": 1.220 secs }

我感兴趣的是以下一行:

And there is a particular line which interests me:

Error Domain=NSURLErrorDomain Code=-1009

如何获取此代码,以便我可以正确处理该错误.我尝试了所有可能组成的组合,但是任何地方都找不到此代码.

How can I get this Code so I can handle the error correctly. I tried all combinations I could make up but there is no trace of this code anywhere.

推荐答案

当您使用Alamofire进行呼叫时,它将返回一个响应,您可以在其中检查是否有任何错误.这是使用Alamofire进行错误处理的简单示例.

when you make calls with Alamofire, it returns a response where you can check for any errors. This is a simple example of error handling call with Alamofire.

Alamofire.request("https://your.url.com").responseJSON { response in
    if (response.result.isSuccess){
        //do your json stuff
    } else if (response.result.isFailure) {
        //Manager your error
        switch (response.error!._code){
            case NSURLErrorTimedOut:
                //Manager your time out error
                break
            case NSURLErrorNotConnectedToInternet:
                //Manager your not connected to internet error
                break
            default:
                //manager your default case 
            }
    }
}

享受:)

于2020年4月1日更新

此代码应在Alamofire 5版本上有效.我仍然没有检查,让我知道这是否有效

This code should works on Alamofire 5 version. I still didn't check, let me know if this works

AF.request(route).responseJSON { (response) in
    let result = response.result
    switch result {
    case .success(let value):
        print("Success")
        // Do something with value
    case .failure(let error):

        if let underlyingError = error.underlyingError {
            if let urlError = underlyingError as? URLError {
                switch urlError.code {
                case .timedOut:
                    print("Timed out error")
                case .notConnectedToInternet:
                    print("Not connected")
                default:
                    //Do something
                    print("Unmanaged error")
                }
            }
        }
    }
}

我希望这能奏效:)

这篇关于尝试访问Alamofire中的错误代码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆