ios – Alamofire上传进度

我需要发送带有参数的文件并跟踪上传的进度.方法

Alamofire.request(.POST, "http://httpbin.org/post", parameters: parameters, encoding: .JSON)

不跟踪进度上传.方法

Alamofire.upload(.POST, "http://httpbin.org/post", file: fileURL)
     .progress { (bytesWritten, totalBytesWritten, totalBytesExpectedToWrite) in
         println(totalBytesWritten)
     }
     .responseJSON { (request, response, JSON, error) in
         println(JSON)
     }

无法设置参数

是否可以发送带有参数的文件并跟踪上传的进度?

最佳答案 你必须使用
.uploadProgress而不是.progress.

点赞