我正在使用Alamofire进行网络请求,并希望添加超时。但Alamofire的功能不起作用。当我编写以下代码时没有任何反应
let manager = Alamofire.SessionManager.default
manager.session.configuration.timeoutIntervalForRequest = 1 // not working, 20 secs normally (1 just for try)
manager.request(url, method: method, parameters: params)
.responseJSON { response in
print(response)
...
当我尝试不使用Alamofire进行网络请求时,超时工作成功。但还有其他错误。
var request = URLRequest(url: URL(string: url)!)
request.httpMethod = "post"
request.setValue("application/json", forHTTPHeaderField: "Content-Type")
request.timeoutInterval = 1 // 20 secs normally (1 just for try)
request.httpBody = try! JSONSerialization.data(withJSONObject: params!)
...
那么,我怎样才能在Swift 3中为Alamofire添加超时?
答案 0 :(得分:2)
最后,我找到了这个答案的解决方案:https://stackoverflow.com/a/44948686/7825024
当我添加我的功能时,此配置代码不起作用,但当我将其添加到 AppDelegate时,它可以
<强> AppDelegate.swift 强>
import UIKit
var AFManager = SessionManager()
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
let configuration = URLSessionConfiguration.default
configuration.timeoutIntervalForRequest = 5 // seconds
configuration.timeoutIntervalForResource = 5 //seconds
AFManager = Alamofire.SessionManager(configuration: configuration)
return true
}
...
}
示例:强>
AFManager.request("yourURL", method: .post, parameters: parameters).responseJSON { response in
...
}
答案 1 :(得分:0)
在将URLSessionConfiguration
添加到URLSession
后,您无法修改Alamofire.SesssionManager.default.session.configuration
的值,因此尝试操纵SessionManager
将始终失败。要正确更改配置值,请按照Alamofire文档实例化您自己的var defaultHeaders = Alamofire.SessionManager.defaultHTTPHeaders
defaultHeaders["DNT"] = "1 (Do Not Track Enabled)"
let configuration = URLSessionConfiguration.default
configuration.httpAdditionalHeaders = defaultHeaders
let sessionManager = Alamofire.SessionManager(configuration: configuration)
。例如:
{{1}}