Alamofire Error.localizedDescription - 无法完成操作

时间:2017-03-01 05:31:43

标签: ios swift alamofire

如果出现错误,我正试图通过Alamofire的回调访问.localizedDescription属性

我有一个枚举,用于处理与Alamofire docs具体相似的Error类型

enum BackendAPIErrorManager: Error {
case network(error: Error)
case apiProvidedError(reason: String) // this causes me problems
...
}

在我的请求中,如果出现错误,我将适用的错误存储到Alamofire提供的.failure案例中,如下所示:

private func resultsFromResponse(response: DataResponse<Any>) -> Result<Object> {
    guard response.result.error == nil else {
        print(response.result.error!)
        return .failure(BackendAPIErrorManager.network(error: response.result.error!))
    }

    if let jsonDictionary = response.result.value as? [String: Any], let errorMessage = jsonDictionary["error"] as? String, let errorDescription = jsonDictionary["error_description"] as? String  {
        print("\(errorMessage): \(errorDescription)")
        return .failure(BackendAPIErrorManager.apiProvidedError(reason: errorDescription))
    }
    ....
}

调用该方法:

func performRequest(completionHandler: @escaping (Result<someObject>) -> Void) {
    Alamofire.request("my.endpoint").responseJSON {
        response in

        let result = resultsFromResponse(response: response)
        completionHandler(result)
    }
}

然后当我调用performRequest(:)方法时,我检查完成处理程序中的错误:

performRequest { result in 
    guard result.error == nil else {
        print("Error \(result.error!)") // This works 
        //prints apiProvidedError("Error message populated here that I want to log")

        print(result.error!.localizedDescription) // This gives me the below error 
    }
}

如果出现错误,返回.failure(BackendAPIErrorManager.apiProvidedError(reason: errorDescription)),我收到以下错误

The operation couldn’t be completed. (my_proj.BackendErrorManager error 1.)

如何从返回的错误中获取String值?我试过.localizedDescription没有运气。任何帮助都会很棒!

1 个答案:

答案 0 :(得分:2)

为了能够在符合.localizedDescription协议的自定义BackendAPIErrorManager上致电Error,您需要添加以下代码:

extension BackendAPIErrorManager: LocalizedError {
  var errorDescription: String? {
    switch self {
      case .apiProvidedError:
        return reason
    }
  }
}

原因有点模糊(因为关于Error协议如何工作的文档还不太详细)但基本上,在Swift 3中,能够提供本地化的错误描述(以及其他相关信息) ,您需要符合新的LocalizedError协议。

您可以在此处找到更多详细信息: How to provide a localized description with an Error type in Swift?