AFNetWorking 队列请求

我们在开发过程中,经常会遇到有些页面不止一个网络请求,有时候需要两个三个甚至更多,这个时候我们就需要队列请求,下边是GET请求的多个请求放在队列里边:

[objc] view plaincopyprint?

  1. NSURL *url = [NSURL URLWithString:@"http://www.baidu.com"];
  2. NSURLRequest *request = [NSURLRequest requestWithURL:url];
  3. AFHTTPRequestOperation *operation1 = [[AFHTTPRequestOperation alloc] initWithRequest:request];
  4. [operation1 setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject) {
  5. NSLog(@"Response: %@", [[NSString alloc] initWithData:responseObject encoding:NSUTF8StringEncoding]);
  6. } failure:^(AFHTTPRequestOperation *operation, NSError *error) {
  7. NSLog(@"Error: %@", error);
  8. }];
  9. NSURL *url2 = [NSURL URLWithString:@"http://www.sohu.com"];
  10. NSURLRequest *request2 = [NSURLRequest requestWithURL:url2];
  11. AFHTTPRequestOperation *operation2 = [[AFHTTPRequestOperation alloc] initWithRequest:request2];
  12. [operation2 setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject) {
  13. NSLog(@"Response2: %@", [[NSString alloc] initWithData:responseObject encoding:NSUTF8StringEncoding]);
  14. } failure:^(AFHTTPRequestOperation *operation, NSError *error) {
  15. NSLog(@"Error: %@", error);
  16. }];
  17. NSURL *url3 = [NSURL URLWithString:@"http://www.sina.com"];
  18. NSURLRequest *request3 = [NSURLRequest requestWithURL:url3];
  19. AFHTTPRequestOperation *operation3 = [[AFHTTPRequestOperation alloc] initWithRequest:request3];
  20. [operation3 setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject) {
  21. NSLog(@"Response3: %@", [[NSString alloc] initWithData:responseObject encoding:NSUTF8StringEncoding]);
  22. } failure:^(AFHTTPRequestOperation *operation, NSError *error) {
  23. NSLog(@"Error: %@", error);
  24. }];
  25. //同时请求
  26. NSOperationQueue *operationQueue = [[NSOperationQueue alloc] init];
  27. [operationQueue setMaxConcurrentOperationCount:3];
  28. [operationQueue addOperations:@[operation1, operation2, operation3] waitUntilFinished:NO];
  29. //operation2 在 operation1 请求完成后执行
  30. NSOperationQueue *operationQueue = [[NSOperationQueue alloc] init];
  31. [operation2 addDependency:operation1];
  32. [operationQueue addOperations:@[operation1, operation2, operation3] waitUntilFinished:NO];

下边是POST请求:

[objc] view plaincopyprint?

    1. NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@"https://gowalla.com/friendships/request?user_id=1699"]];
    2. [request setHTTPMethod:@"POST"];
    3. NSDictionary *headers = [NSDictionary dictionaryWithObject:[NSString stringWithFormat:@"Token token=\"%@\"", kOAuthToken] forKey:@"Authorization"];
    4. [request setAllHTTPHeaderFields:headers];
    5. AFHTTPRequestOperation *operation = [AFHTTPRequestOperation operationWithRequest:request completion:^(NSURLRequest *request, NSHTTPURLResponse *response, NSData *data, NSError *error) {
    6. BOOL HTTPStatusCodeIsAcceptable = [[NSIndexSet indexSetWithIndexesInRange:NSMakeRange(200, 100)] containsIndex:[response statusCode]];
    7. if (HTTPStatusCodeIsAcceptable) {
    8. NSLog(@"Friend Request Sent");
    9. } else {
    10. NSLog(@"[Error]: (%@ %@) %@", [request HTTPMethod], [[request URL] relativePath], error);
    11. }
    12. }];
    13. NSOperationQueue *queue = [[[NSOperationQueue alloc] init] autorelease];
    14. [queue addOperation:operation];
时间: 2024-10-16 20:37:24

AFNetWorking 队列请求的相关文章

iOS开发 - AFNetworking网络请求

AFNetworking 什么是AFN 全称是AFNetworking,是对NSURLConnection.NSURLSession的一层封装 虽然运行效率没有ASI高,但是使用比ASI简单 在iOS开发中,使用比较广泛 AFN的github地址 https://github.com/AFNetworking/AFNetworking AFHTTPRequestOperationManager 是AFN中最重要的对象之一 封装了HTTP请求的常见处理 GET\POST请求 解析服务器的响应数据

AFNetworking网络请求数据

//创建AFNetworking的请求操作    AFHTTPRequestOperation *operation = [[AFHTTPRequestOperation alloc] initWithRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:[NSString stringWithFormat:@"http://lib.wap.zol.com.cn/ipj/docList.php?class_id=%ld&pag

设计模式(一):命令模式(3)——命令模式扩展之队列请求

前言 命令模式的讲解分为四篇: 设计模式(一):命令模式(1)——基本的命令模式 设计模式(一):命令模式(2)——命令模式扩展之宏命令 设计模式(一):命令模式(3)——命令模式扩展之队列请求 设计模式(一):命令模式(4)——命令模式扩展之日志请求 一.命令模式扩展——队列请求 1.队列请求的工作方式 上一篇说了命令模式的扩展之宏命令,本节讲解一下命令模式的第二个扩展队列请求.因为命令可以将运算块打包(一个接收者和一组动作),然后将它传来传去,就像是一般的对象一样.现在,即使命令被创建许久之

AFNetWorking 网络请求转载

今天开始会写几篇关于AFN源码解读的一些Blog,首先要梳理一下AFN的整体结构(主要是讨论2.x版本的Session访问模块):我们先看看我们最常用的一段代码: AFHTTPSessionManager *manager = [AFHTTPSessionManager manager]; [manager GET:@"https://www.baidu.com" parameters:nil success:^(NSURLSessionDataTask * _Nonnull task

设置AFNetworking网络请求的超时时间

也许大家使用的时候已经察觉到,设置AFNetworking的超时时间并不管用,但可以用特殊的方式来处理. 以下是笔者基于AFNetworking2.5.0封装的GET,POST请求用方法. POST请求 + (AFHTTPRequestOperation *)GETMethod:(NSString *)URLString parameters:(id)parameters success:(void (^)(AFHTTPRequestOperation *operation, id respon

AFNetworking网络请求的get和post步骤

1.首先通过第三方:CocoaPods下载AFNetworking 1.1.先找到要查找的三方库:pod search + AFNetworking 1.2.出来一堆列表页面,选择三方库最新版本命令,例如: pod ‘MBProgressHUD’,’~>0.8’  (:q 返回) 1.3.创建工程,进入工程: cd + 工程路径 1.4.编辑工程的Podfile文件: vim Podfile 1.5.(platform :iOS, ‘8.0’?target “工程名” do?pod ‘AFNet

ios开发网络学习六:设置队列请求与RunLoop

#import "ViewController.h" @interface ViewController ()<NSURLConnectionDataDelegate> @end @implementation ViewController -(void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event { [self newThreadDelegate2]; } -(void

AFNetworking 的请求方法

AFNetworking 使用方法(2.0) 本文介绍的是AFNetworking-2.0 使用方法(增加适应:不完善的head內的 meta的content格式) 随着asihttprequest的停止更新,许多人都转向了AFNetworking. MKNetworkKit.我也是其中一个.于是我从网上找了许多文章作参考,但是结果都是失败告终.研究了好久都搞不透,最后还是请人帮忙搞定了.经常从网上索取免费资料的一员,要有回报的思想,也为了让更多的人少走些弯路,所以下面是代码:(有错误可以指出)

AFNetworking POST 请求参数保存在Body 中的解决办法

1)首先区分一下,get和post的区别 get方法,会将参数放到url中,属于透传,相对于post放到content中的安全性低 2)使用AFNetworking,默认HTTPMethodsEncodingParametersInURI里面包含的只有`GET`, `HEAD`, 和 `DELETE` .不知道情况的情况下使用POST方法的话,会将用户传递的参数放到Body里面,导致服务端JSP通过request.getParameters()获取不到参数. 3)通过xcode定位代码,发现在r