ios – 如何使用Moya pod为请求设置超时?

前端之家收集整理的这篇文章主要介绍了ios – 如何使用Moya pod为请求设置超时?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用 Swift 3和 Moya pod.

我使用Basic Usage配置了我需要的所有东西,但是我找不到任何可以设置超时的函数或变量(对于每个请求或特定请求).

我怎样才能做到这一点?

解决方法

haydarKarkincomment on GitHub中提供了答案.下面的代码片段直接从他的评论中复制.

您可以通过创建自定义Alamofire会话管理器为Moya提供程序创建自定义配置:

import Foundation
import Alamofire

class DefaultAlamofireManager: Alamofire.SessionManager {
    static let sharedManager: DefaultAlamofireManager = {
        let configuration = URLSessionConfiguration.default
        configuration.httpAdditionalHeaders = Alamofire.SessionManager.defaultHTTPHeaders
        configuration.timeoutIntervalForRequest = 20 // as seconds,you can set your request timeout
        configuration.timeoutIntervalForResource = 20 // as seconds,you can set your resource timeout
        configuration.requestCachePolicy = .useProtocolCachePolicy
        return DefaultAlamofireManager(configuration: configuration)
    }()    
}

然后在声明您的提供商时包含自定义Alamofire Manager:

let Provider = MoyaProvider<GithubAPI>(endpointClosure: endpointClosure,manager: DefaultAlamofireManager.sharedManager,plugins: [NetworkActivityPlugin(networkActivityClosure: networkActivityClosure)])
原文链接:https://www.f2er.com/iOS/333095.html

猜你在找的iOS相关文章