AFNetworking框架使用浅析.docx

上传人:小飞机 文档编号:3152233 上传时间:2023-03-11 格式:DOCX 页数:8 大小:39.17KB
返回 下载 相关 举报
AFNetworking框架使用浅析.docx_第1页
第1页 / 共8页
AFNetworking框架使用浅析.docx_第2页
第2页 / 共8页
AFNetworking框架使用浅析.docx_第3页
第3页 / 共8页
AFNetworking框架使用浅析.docx_第4页
第4页 / 共8页
AFNetworking框架使用浅析.docx_第5页
第5页 / 共8页
亲,该文档总共8页,到这儿已超出免费预览范围,如果喜欢就下载吧!
资源描述

《AFNetworking框架使用浅析.docx》由会员分享,可在线阅读,更多相关《AFNetworking框架使用浅析.docx(8页珍藏版)》请在三一办公上搜索。

1、AFNetworking框架使用浅析目录: 1、为什么要用AFNetworking 2、AFNetworking的用法 一、为什么要用AFNetworking 在ios开发中,一般情况下,简单的向某个web站点简单的页面提交请求并获取服务器的响应,用xcode自带的NSURLConnection是能胜任的。但是,在绝大部分下我们所需要访问的web页面则是属于那种受到权限保护的页面,并不是有一个简单的URL可以访问的。这就涉及到了Session和Cookie的处理了,在此时使用NSURLConnection也是能够达到要求的,只是其中处理起来的复杂度和难度就提升了。 为了更好的处理向Web站点的

2、请求,包括处理Session,Cookie等细节问题,使用AFNetworking则是更好的选择,他可以用于发送HTTP请求,接收HTTP的响应,但是不会缓存服务器的响应,不能执行HTML页面中的JAvascript代码,同时,AFNetworking还内置支持JSON,plist文件和XML文件的解析,使用比较方便。 扩展:1、Session:中文有译作时域的,就是只某个客户端在访问服务器起到停止访问这一段的时间间隔被称为时域。 2、Cookie:由服务器发送给客服端,把Cookie的key:value值储存在本地文件夹下,当下次请求的时候能够直接发送Cookie获得权限验证 二、AFNet

3、working的用法 1、提交GET请求和提交POST请求 AFNetworking是第三方的框架,所以需要开发者自行下载,安装。并在AFNetworking.h文件导入#import“AFHTTPRequestOpeartionManager.h ”,把AFNetworking.h头文件放入prefix文件中。 a、创建AFHTTPRequestOpeartionManger对象 b、根据服务器内容的不同,为AFHTTPRequestOpeartionManger对象指定不同的解析器,该对象默认的解析器是JSON和Plist文件解析器。如果服务器的数据是XML格式则需要手动的更改解析器 c、

4、发送GET请求: 用Manager对象调用 GET:parameters:success:failure:方法即可,success代码块和failue代码块在网络请求成功/失败过后调用。 d、success:参数指定了代码块中处理服务器响应成功的正确数据,failue:参数指定了代码块中处理服务器响应失败的错误数据、 AFHTTPRquestOperationManager 包含了常见的HTTP访问web站点的模式,有创建请求,连续的响应,网络类型监视以及安全。 “GET”: objc view plaincopy 1. 2. 3. 4. /创建AFHTTPRequestOperationMa

5、nager对象 AFHTTPRequestOperationManager *manager = AFHTTPRequestOperationManger manager; /调用get方法 manager GET:“ : parameters/加载成功的代码块,可以接收数据 success:(AFHTTPRequestOperation *operation,id responseobject) NSLog(“json“:%”,responseObject); failure:(AFHTTPRequestOperation *operation,NSError *error) NSLog(“

6、Error:%”,error); ; 5. 6. 7. 8. 9. 10. ”POST“:URL-Form-Encoded Request URL编码请求类型 objc view plaincopy 1. 2. 3. 4. 5. 6. 7. AFHTTPRequestOperationManager *manager = AFHTTPRequestOperationManager manager; NSDictionary *parameters = foo: bar; manager POST: parameters:parameters success:(AFHTTPRequestOper

7、ation *operation, id responseObject) NSLog(JSON: %, responseObject); failure:(AFHTTPRequestOperation *operation, NSError *error) NSLog(Error: %, error); ; POST多个请求 objc view plaincopy 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. AFHTTPRequestOperationManager *manager = AFHTTPRequestOperationManager manager; NSDic

8、tionary *parameters = foo: bar; NSURL *filePath = NSURL fileURLWithPath:file:/path/to/image.png; manager POST: parameters:parameters constructingBodyWithBlock:(id formData) formData appendPartWithFileURL:filePath name:image error:nil; success:(AFHTTPRequestOperation *operation, id responseObject) NS

9、Log(Success: %, responseObject); failure:(AFHTTPRequestOperation *operation, NSError *error) NSLog(Error: %, error); ; 2、创建一个下载文件的任务 AFURLSessionManager创建并完善了一个NSURLSession的对象基于遵从NSURLSessionDelegate与NSURLSessionDataDelegate协议NSURLSessionConfigration对象。 objc view plaincopy 1. 2. 3. 4. 5. 6. 7. NSURL

10、SessionConfiguration *configuration = NSURLSessionConfiguration defaultSessionConfiguration; AFURLSessionManager *manager = AFURLSessionManager alloc initWithSessionConfiguration:configuration; NSURL *URL = NSURL URLWithString: NSURLRequest *request = NSURLRequest requestWithURL:URL; NSURLSessionDow

11、nloadTask *downloadTask = manager downloadTaskWithRequest:request progress:nil destination:NSURL *(NSURL *targetPath, NSURLResponse *response)8. NSURL *documentsDirectoryURL = NSFileManager defaultManager URLForDirectory:NSDocumentDirectory inDomain:NSUserDomainMask appropriateForURL:nil create:NO e

12、rror:nil; 9. return documentsDirectoryURL URLByAppendingPathComponent:response suggestedFilename; 10. 11. 12. 13. completionHandler:(NSURLResponse *response, NSURL *filePath, NSError *err NSLog(File downloaded to: %, filePath); ; downloadTask resume; or) 3、创建一个上传文件的任务 objc view plaincopy 1. 2. 3. 4.

13、 5. 6. 7. 8. NSURLSessionConfiguration *configuration = NSURLSessionConfiguration defaultSessionConfiguration; AFURLSessionManager *manager = AFURLSessionManager alloc initWithSessionConfiguration:configuration; NSURL *URL = NSURL URLWithString: NSURLRequest *request = NSURLRequest requestWithURL:UR

14、L; NSURL *filePath = NSURL fileURLWithPath:file:/path/to/image.png; NSURLSessionUploadTask *uploadTask = manager uploadTaskWithRequest:request fromFile:filePath progress:nil completionHandler:(NSURLResponse *response, id responseObject, NSError *error) 9. 10. 11. 12. 13. 14. 15. if (error) NSLog(Err

15、or: %, error); else NSLog(Success: % %, response, responseObject); ; uploadTask resume; 4、处理JSON或Plist响应 IOS应用在处理JSON和Plist响应的时候可以十分轻便将其转换成NSDictionary对象或者NSArray对像,AFHTTPRequestOpeartionManager默认就可以处理JSON或Plist响应,也就是说当我们response.MIMEType为appication/json、text/json,AFHTTPRequestOpeartionManager默认就可以处

16、理,无需再次指定服务器响应解析器。 objc view plaincopy 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. AFHTTPRequestOperationManager *manager = AFHTTPRequestOperationManager manager; / manager.responseSerializer = AFHTTPResponseSerializer serializer; NSDictionary *parameter = location:长沙,output:json,ak:jlflVx

17、1VTUahj05Q7GfB7PCf; manager GET: parameters:parameter success:(AFHTTPRequestOperation *operation, id responseObject) NSLog(OK); dic = responseObject; NSArray *keys = dic allKeys; NSLog(%,keys); / _datas = responseObject; / NSString *stringData = NSString allocinitWithData:_datas encodi/ NSLog(%,stringData); failure:(AFHTTPRequestOperation *operation, NSError *error) NSLog(NOT OK); ; ng:NSUTF8StringEncoding;

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > 生活休闲 > 在线阅读


备案号:宁ICP备20000045号-2

经营许可证:宁B2-20210002

宁公网安备 64010402000987号