美文网首页
AFNetworking 上传图片时超时的解决方案

AFNetworking 上传图片时超时的解决方案

作者: 秋天的田野 | 来源:发表于2019-03-01 11:14 被阅读0次

      ```  

     NSData*imageData;

        NSString*mimetype;

        //判断下图片是什么格式

        if (UIImagePNGRepresentation(image) != nil) {

            mimetype =@"image/png";

            imageData =UIImagePNGRepresentation(image);

        }else{

            mimetype =@"image/jpeg";

            imageData =UIImageJPEGRepresentation(image,1.0);

        }

        AFHTTPSessionManager *session = [AFHTTPSessionManager manager];

        NSString* urlString = [self uploadUserImageUrl];

        NSDictionary* dict =@{@"id":Id};

        [session POST:urlString parameters:dict constructingBodyWithBlock:^(id   formData) {

            NSString*str =@"avatar";

            NSString * fileName = [[NSString alloc]init];

            if (UIImagePNGRepresentation(image) != nil) {

                fileName = [NSString stringWithFormat:@"%@.png", str];

            }else{

                fileName = [NSString stringWithFormat:@"%@.jpg", str];

            }

            // 上传图片,以文件流的格式

            /**

             *filedata : 图片的data

             *name    : 后台提供的字段

             *mimeType : 类型

             */

            NSString * imagePath = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)[0];

          imagePath = [image pathstringByAppendingPathComponent:fileName];

    //注意此处一定要用图片的本地全路径,不能只是传文件名

            [formData appendPartWithFileData:imageDataname:@"file" fileName:imagePath mimeType:mimetype];

        }progress:^(NSProgress*_uploadProgress) {

        }success:^(NSURLSessionDataTask* task, id  responseObject) {

            [self requestSuccessTipWithObject:responseObject];

        }failure:^(NSURLSessionDataTask*task,NSError*error) {

            NSLog(@"error = %@",error);

            //请求发生错误回调

            dispatch_async(dispatch_get_main_queue(), ^{

               [self requestFailureWithError:error delegate:delegate];

            });

        }]; 

     ```

    相关文章

      网友评论

          本文标题:AFNetworking 上传图片时超时的解决方案

          本文链接:https://www.haomeiwen.com/subject/heewrftx.html