AFNetworking的uploadTask怎么写?

github文档上的众多示例代码中,有一段上传的:

NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration];

AFURLSessionManager *manager = [[AFURLSessionManager alloc] initWithSessionConfiguration:configuration];

NSURL *URL = [NSURL URLWithString:@"http://example.com/upload"];

NSURLRequest *request = [NSURLRequest requestWithURL:URL];

NSURL *filePath = [NSURL fileURLWithPath:@"file://path/to/image.png"];

NSURLSessionUploadTask *uploadTask = [manager uploadTaskWithRequest:request fromFile:filePath progress:nil completionHandler:^(NSURLResponse *response, id responseObject, NSError *error) {
    if (error) {
        NSLog(@"Error: %@", error);
    } else {
        NSLog(@"Success: %@ %@", response, responseObject);
    }
}];
[uploadTask resume];

我在swift项目引入afn3.1.0,照着上面的示例写的代码,运行会报错:
GET method must not have a body

{Error Domain=kCFErrorDomainCFNetwork Code=-1103 "(null)"}}

Optional(Error Domain=NSURLErrorDomain Code=-1103 "resource exceeds maximum size"

  let manager = AFHTTPSessionManager(sessionConfiguration: config)
        
  let req = URLRequest(url: URL(string: "http://127.0.0.1:8080/upload.php")!)
        
  let fileURL = Bundle.main.url(forResource: "g.jpg", withExtension: nil)
        
 (manager.uploadTask(with: req, fromFile: fileURL!) { (progress) in
            print(progress)
 } completionHandler: { (response, some, err) in
            if (err != nil){ print(err);return }
            print(response)
            print(some)
 }).resume()
阅读 1.5k
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题