欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

ios用AFN进行文件上传的示例代码

程序员文章站 2024-02-12 09:31:55
app中个人信息页面,通常都会有设置头像的功能.当用户从相册中选择图像或者拍摄照片成功后,一般都需要将照片发送到服务器进行保存,以方便用户在其他设备或者再次登陆后,能再次从...

app中个人信息页面,通常都会有设置头像的功能.当用户从相册中选择图像或者拍摄照片成功后,一般都需要将照片发送到服务器进行保存,以方便用户在其他设备或者再次登陆后,能再次从服务器请求到设置的照片.项目中通过afn,实现起来很方便.

- (void)upload{
  nsdata *imagedata = [nsdata datawithcontentsoffile:[[nsbundle mainbundle] pathforresource:@"mine.jpeg" oftype:nil]];
  nsdictionary* urlparameters = @{//设置请求头 };
  nsurl *url = [nsurl fileurlwithpath:[[nsbundle mainbundle] pathforresource:@"mine.jpeg" oftype:nil]];
  nsurlrequest *request = [nsurlrequest requestwithurl:url];
  nsurlresponse *repsonse = nil;
  [nsurlconnection sendsynchronousrequest:request returningresponse:&repsonse error:nil];
  
  nsstring *mimetype = repsonse.mimetype;
  nslog(@"%@", repsonse.mimetype);
  
  [[afhttpsessionmanager manager] post:@"上传网址" parameters:urlparameters constructingbodywithblock:^(id<afmultipartformdata> _nonnull formdata) {
    [formdata appendpartwithfiledata:imagedata name:@"file" filename:@"mine.jpeg" mimetype:mimetype];
  } progress:^(nsprogress * _nonnull uploadprogress) {
    //
    
  } success:^(nsurlsessiondatatask * _nonnull task, id _nullable responseobject) {
    //处理成功
    
  } failure:^(nsurlsessiondatatask * _nullable task, nserror * _nonnull error) {
    //处理失败
    
  }];  
}

mine.jpeg是在项目存在的图片,编译时会以nsbundle的形式存在.首先通过nsurlconnection同步发送请求获取mimetype.然后使用afn,可以将需要上传的imagedata通过方法appendpartwithfiledata:放在请求体中,然后传入已经获得的mimetype,就能顺利实现上传了.

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。