简体   繁体   中英

AFNetworking 3.0 upload image

Im trying to upload image to my server by using AFNetworking 3.0. My server returns "Please select a file to upload.". Here is how i catch the uploaded file in my php file $filename = $_FILES["file"]["name"]; .

-(void)uplodeImages :(NSString *)image {
    NSMutableURLRequest *request = [[AFHTTPRequestSerializer serializer] multipartFormRequestWithMethod:@"POST" URLString:@"http://local/upload.php" parameters:nil constructingBodyWithBlock:^(id<AFMultipartFormData> formData) {
        [formData appendPartWithFileURL:[NSURL fileURLWithPath:image] name:@"file" fileName:@"imagename.jpg" mimeType:@"image/jpeg" error:nil];
    } error:nil];

    AFURLSessionManager *manager = [[AFURLSessionManager alloc] initWithSessionConfiguration:[NSURLSessionConfiguration defaultSessionConfiguration]];

    NSURLSessionUploadTask *uploadTask;
    uploadTask = [manager uploadTaskWithStreamedRequest:request progress:^(NSProgress * _Nonnull uploadProgress) {
                      dispatch_async(dispatch_get_main_queue(), ^{
                          NSLog(@"Laddar...");
                      });
                  } completionHandler:^(NSURLResponse * _Nonnull response, id  _Nullable responseObject, NSError * _Nullable error) {
                      if (error) {
                          NSLog(@"Error: %@", error);
                      } else {
                          NSLog(@"%@ %@", response, responseObject);
                      }
                  }];
    [uploadTask resume];
}

Note :- I have just implemented Image Upload service using AFNetworking 3.0,

-> Here kBaseURL means Base URL of server

->serviceName means Name of Service.

->dictParams means give parameters if needed, otherwise nil.

->image means pass your image.

Note :- This code written in NSObject Class and we have apply in our Project.

+ (void)requestPostUrlWithImage: (NSString *)serviceName parameters:(NSDictionary *)dictParams image:(UIImage *)image success:(void (^)(NSDictionary *responce))success failure:(void (^)(NSError *error))failure {

NSString *strService = [NSString stringWithFormat:@"%@%@",kBaseURL,serviceName];
[SVProgressHUD show];

NSData *fileData = image?UIImageJPEGRepresentation(image, 0.5):nil;

NSError *error;
NSMutableURLRequest *request = [[AFHTTPRequestSerializer serializer] multipartFormRequestWithMethod:@"POST" URLString:strService parameters:dictParams constructingBodyWithBlock:^(id<AFMultipartFormData> formData) {

    if(fileData){
        [formData appendPartWithFileData:fileData
                                    name:@"image"
                                fileName:@"img.jpeg"
                                mimeType:@"multipart/form-data"];
    }
} error:&error];

AFURLSessionManager *manager = [[AFURLSessionManager alloc] initWithSessionConfiguration:[NSURLSessionConfiguration defaultSessionConfiguration]];

NSURLSessionUploadTask *uploadTask;
uploadTask = [manager uploadTaskWithStreamedRequest:request progress:^(NSProgress * _Nonnull uploadProgress) {

    NSLog(@"Wrote %f", uploadProgress.fractionCompleted);
}
                                  completionHandler:^(NSURLResponse * _Nonnull response, id  _Nullable responseObject, NSError * _Nullable error) {
                                      [SVProgressHUD dismiss];
                                      if (error)
                                      {
                                          failure(error);
                                      }
                                      else
                                      {
                                          NSLog(@"POST Response  : %@",responseObject);
                                          success(responseObject);

                                      }
                                  }];

[uploadTask resume];

}

--> Now apply in our project.

UIImage *imgProfile = //Pass your image.        


    [WebService requestPostUrlWithImage:@"save-family-member" parameters:nil image:imgProfile success:^(NSDictionary *responce) {

        NSString  *check = [NSString stringWithFormat:@"%@",[responce objectForKey:@"status"]];
        if ([check  isEqualToString: @"1"]) {
           //Image Uploaded. 
        }
        else
        {
         //Failed to Upload.
        }


    } failure:^(NSError *error) {
        //Error
    }];

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM