美文网首页
AFNetworking框架的簡單使用

AFNetworking框架的簡單使用

作者: IPFK | 来源:发表于2017-10-25 09:32 被阅读0次
  • 實現Post請求
 NSString *strURL = @"http://xxx/WebService.php";
    NSURL *url = [NSURL URLWithString:strURL];
    
    //设置参数
    NSString *post = [NSString stringWithFormat:@"email=%@&type=%@&action=%@", @"xxx@xxx.com", @"JSON", @"query"];
    NSData *postData = [post dataUsingEncoding:NSUTF8StringEncoding];
    
    NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
    [request setHTTPMethod:@"POST"];
    [request setHTTPBody:postData];

    NSURLSessionConfiguration *defaultConfig = [NSURLSessionConfiguration defaultSessionConfiguration];
//前面都和URLSESSION一樣,
    AFURLSessionManager *manager = [[AFURLSessionManager alloc] initWithSessionConfiguration:defaultConfig];

    NSURLSessionDataTask *task = [manager dataTaskWithRequest:request completionHandler:^(NSURLResponse *response, id responseObject, NSError *error) {
        NSLog(@"请求完成...");
        if (!error) {
            [self reloadView:responseObject];
        } else {
            NSLog(@"error : %@", error.localizedDescription);
        }
    }];

    [task resume];

  • 請求下載
NSURLSessionDownloadTask *downloadTask = [manager downloadTaskWithRequest:request progress:^(NSProgress *downloadProgress) {
//下載進度
        NSLog(@"%@", [downloadProgress localizedDescription]);
        dispatch_async(dispatch_get_main_queue(), ^{
            [self.progressView setProgress:downloadProgress.fractionCompleted animated:TRUE];
        });

    } destination:^NSURL *(NSURL *targetPath, NSURLResponse *response) {
//存放文件
        NSString *downloadsDir = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, TRUE) objectAtIndex:0];
        NSString *downloadStrPath = [downloadsDir stringByAppendingPathComponent:[response suggestedFilename]];
        NSURL *downloadURLPath = [NSURL fileURLWithPath:downloadStrPath];

        return downloadURLPath;

    } completionHandler:^(NSURLResponse *response, NSURL *filePath, NSError *error) {
//下載完成更新UI組件
        NSLog(@"File downloaded to: %@", filePath);
        NSData *imgData = [[NSData alloc] initWithContentsOfURL:filePath];
        UIImage *img = [UIImage imageWithData:imgData];
        self.imageView1.image = img;

    }];

    [downloadTask resume];
  • 請求上傳
    NSString *uploadStrURL = @"http://xxx/upload.php";
    NSDictionary *params = @{@"email" : @"xxx@xxx.com"};
    
    NSString *filePath = [[NSBundle mainBundle] pathForResource:@"test2" ofType:@"jpg"];
    
    
    NSMutableURLRequest *request = [[AFHTTPRequestSerializer serializer] multipartFormRequestWithMethod:@"POST"
                  URLString:uploadStrURL parameters:params
                  constructingBodyWithBlock:^(id <AFMultipartFormData> formData) {
                      [formData appendPartWithFileURL:[NSURL fileURLWithPath:filePath] name:@"file" fileName:@"1.jpg" mimeType:@"image/jpeg" error:nil];
                  } error:nil];
    
    AFURLSessionManager *manager = [[AFURLSessionManager alloc] initWithSessionConfiguration:[NSURLSessionConfiguration defaultSessionConfiguration]];
    NSURLSessionUploadTask *uploadTask;
    uploadTask = [manager uploadTaskWithStreamedRequest:request
                   progress:^(NSProgress *uploadProgress) {
                       NSLog(@"上传: %@", [uploadProgress localizedDescription]);
                       dispatch_async(dispatch_get_main_queue(), ^{
                           [self.progressView setProgress:uploadProgress.fractionCompleted];
                       });

                   }
                  completionHandler:^(NSURLResponse *response, id responseObject, NSError *error) {
                      if (!error) {
                          NSLog(@"上传成功");
                          [self download];
                      } else {
                          NSLog(@"上传失败: %@", error.localizedDescription);
                      }
                  }];
    
    [uploadTask resume];

相关文章

  • AFNetworking框架的簡單使用

    實現Post請求 請求下載 請求上傳

  • 簡簡單單。

    想做一個熱愛生活的女子,希望醒來後你可以為我做哪怕一年一次的早餐。然後問著窗台花卉的芬芳,哼著歌為它們澆水。一番打...

  • 簡簡單單

    >櫻花飄落是秒速五釐米,不知道你可曾聽過? 三年的時間足夠一個人做什麼? 三年的時間能夠改變一個人嗎? 三年……究...

  • 学术论文90%语态

    現在簡單式 現在簡單式是學術寫作中最基礎的時態,通常用來:賦予論文框架:現在簡單式在論文的前言章節中是用來交代關於...

  • 簡簡單單的2018

    “肥”宅快樂年 頂著肝爆的風險,熬夜已成日常,隨著“再戰一回合”的想法一次又一次在我腦海中出現,我知道這是屬於我的...

  • NSURLSession的簡單使用

    包括四個會話 簡單會話-通過NSURLSession靜態方法+sharedSession獲得NSURLSessio...

  • 簡單的孩子

    簡單的孩子 從不去奢求的太多 心簡單了這世界 就會簡單了許多 該忙碌時就忙碌 該歇息時就歇息 偶而品位簡單的茶 吃...

  • 2文字简单

    我想長這樣一個腦袋,簡簡單單只有文字…

  • 竹報平安

    簡單!

  • 生活中的隨心所欲(1)

    生活很簡單,兩個娃的爸,一個漂亮的老婆,簡單而平凡,平凡裡想突破,想創造些打破現下框架下的事來,想起來容易,說起來...

网友评论

      本文标题:AFNetworking框架的簡單使用

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