1. 常用类
NSURL:请求地址
-
NSURLRequest:一个NSURLRequest对象就代表一个请求,它包含的信息有
- 一个NSURL对象
- 请求方法、请求头、请求体
- 请求超时
NSMutableURLRequest:NSURLRequest的子类
-
NSURLConnection
- 负责发送请求,建立客户端和服务器的连接
- 发送数据给服务器,并收集来自服务器的响应数据
2. NSURLConnection的使用步骤
- 使用NSURLConnection发送请求的步骤很简单
- 创建一个NSURL对象,设置请求路径
- 传入NSURL创建一个NSURLRequest对象,设置请求头和请求体
- 使用NSURLConnection发送请求
3. NSURLConnection发送请求
-
NSURLConnection常见的发送请求方法有以下几种
- 3.1同步请求
+ (NSData *)sendSynchronousRequest:(NSURLRequest *)request returningResponse:(NSURLResponse **)response error:(NSError **)error;
- 3.2异步请求:根据对服务器返回数据的处理方式的不同,又可以分为2种
- 3.2.1 block回调
+ (void)sendAsynchronousRequest:(NSURLRequest*) request queue:(NSOperationQueue*) queue
completionHandler:(void (^)(NSURLResponse* response, NSData* data, NSError* connectionError)) handler;
- 3.2.2 代理
- (id)initWithRequest:(NSURLRequest *)request delegate:(id)delegate;
+ (NSURLConnection*)connectionWithRequest:(NSURLRequest *)request delegate:(id)delegate;
- (id)initWithRequest:(NSURLRequest *)request delegate:(id)delegate startImmediately:(BOOL)startImmediately;
- 在startImmediately = NO的情况下,需要调用start方法开始发送请求
- (void)start;
成为NSURLConnection的代理,最好遵守NSURLConnectionDataDelegate协议
NSURLConnectionDataDelegate协议中的代理方法
开始接收到服务器的响应时调用
- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response;
接收到服务器返回的数据时调用(服务器返回的数据比较大时会调用多次)
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data;
服务器返回的数据完全接收完毕后调用
- (void)connectionDidFinishLoading:(NSURLConnection *)connection;
请求出错时调用(比如请求超时)
- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error;
4. NSMutableURLRequest
- NSMutableURLRequest是NSURLRequest的子类,常用方法有
设置请求超时等待时间(超过这个时间就算超时,请求失败)
- (void)setTimeoutInterval:(NSTimeInterval)seconds;
设置请求方法(比如GET和POST)
- (void)setHTTPMethod:(NSString *)method;
设置请求体
- (void)setHTTPBody:(NSData *)data;
设置请求头
- (void)setValue:(NSString *)value forHTTPHeaderField:(NSString *)field;
5. 创建GET和POST请求
- 创建GET请求
NSString *urlStr = [@"http://120.25.226.186:32812/login?username=123&pwd=123" stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NSURL *url = [NSURL URLWithString:urlStr];
// 2. 创建请求对象
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
// 3. 发送GET请求
[NSURLConnection sendAsynchronousRequest:request queue:[[NSOperationQueue alloc] init] completionHandler:^(NSURLResponse * _Nullable response, NSData * _Nullable data, NSError * _Nullable connectionError) {
// 4. 解析数据
NSLog(@"网络请求到的数据:%@",[[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding]);
NSHTTPURLResponse * httpResponse = (NSHTTPURLResponse *)response;
NSLog(@"%zd",httpResponse.statusCode);
NSLog(@"线程:%@",[NSThread currentThread]);
}];
- 创建POST请求
// 1. 确定请求路径
NSURL * url = [NSURL URLWithString:@"http://120.25.226.186:32812/login"];
// 2. 创建可变的请求对象
NSMutableURLRequest * request = [NSMutableURLRequest requestWithURL:url];
// 3. 修改请求方法,POST 必须大写
request.HTTPMethod = @"POST";
// 设置属性,请求超时(如果超过10秒,不管有没有接收到数据,客户端都认为请求失败)
request.timeoutInterval = 10;
// 设置请求头 User-Agent
[request setValue:@"iOS 8.1" forHTTPHeaderField:@"User-Agent"];
// 4. 设置请求体信息,字符串 --> NSData
request.HTTPBody = [@"username=520it&pwd=520it&type=JSON" dataUsingEncoding:NSUTF8StringEncoding];
// 5. 发送请求
[NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue mainQueue] completionHandler:^(NSURLResponse * _Nullable response, NSData * _Nullable data, NSError * _Nullable connectionError) {
// 6. 解析数据, NSData --> NSString
NSLog(@"解析到的数据为:%@",[[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding]);
}];