NSURLRequest
- 用于保存請求地址/請求頭/請求體
- 默認(rèn)情況下NSURLRequest會自動給我們設(shè)置好請求頭
- request默認(rèn)情況下就是GET請求
NSURLConnection
用NSURLConnection獲取網(wǎng)絡(luò)數(shù)據(jù)有三種方式:
1. 通過URL同步的方式獲取
NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"http://m.baidu.com"]];
NSURLResponse *response = nil;
NSError *error = nil;
/*
第一個參數(shù): 需要請求的對象
第二個參數(shù): 服務(wù)返回給我們的響應(yīng)頭信息
第三個參數(shù): 錯誤信息
返回值: 服務(wù)器返回給我們的響應(yīng)體
*/
NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
注意:該方法會阻塞主線程工坊,必須保證該方法不是在主線程調(diào)用的曙强,否則會影響用戶體驗奴艾。
2. 通過URL異步回調(diào)block的方式獲取
NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"http://m.baidu.com"]];
/*
第一個參數(shù): 需要請求的對象
第二個參數(shù): 回調(diào)block的隊列, 決定了block在哪個線程中執(zhí)行
第三個參數(shù): 回調(diào)block
*/
[NSURLConnection sendAsynchronousRequest:request queue:[[NSOperationQueue alloc] init] completionHandler:^(NSURLResponse *response, NSData *data, NSError *connectionError) {
NSLog(@"%@", [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding]);
}];
3. 通過NSURLRequest代理方法獲取
- (void)viewDidLoad {
[super viewDidLoad];
NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"http://m.baidu.com"]
cachePolicy:NSURLRequestUseProtocolCachePolicy
timeoutInterval:30];
// 初始化“receivedData”保存接收的數(shù)據(jù)
self.receivedData = [NSMutableData dataWithCapacity:0];
// 創(chuàng)建connection對象
NSURLConnection *conn = [[NSURLConnection alloc] initWithRequest:request delegate:self];
if (!conn) {
self.receivedData = nil;
// 通知用戶連接失敗
}
}
只要調(diào)用 initWithRequest:delegate:就會向網(wǎng)絡(luò)發(fā)送請求蛤虐,不過可以在connectionDidFinishLoading: 或 connection:didFailWithError:中發(fā)送cancel消息來取消谦炬。
當(dāng)接受到服務(wù)器返回的回應(yīng)后于毙,會調(diào)用代理方法connection:didReceiveResponse:,在這個方法中可以獲得NSURLResponse對象枕扫,里面包含了一些即將要從服務(wù)器接收數(shù)據(jù)的一些基本信息活翩,比如數(shù)據(jù)的長度丧荐,MIME類型等缆瓣。
/*
只要接收到服務(wù)器的響應(yīng)就會調(diào)用
response:響應(yīng)頭
*/
- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
{
NSLog(@"type:%@", response.MIMEType);
NSLog(@"fileName:%@", response.suggestedFilename);
}
接收到服務(wù)器返回的數(shù)據(jù)時調(diào)用(該方法可能調(diào)用一次或多次)
data: 服務(wù)器返回的數(shù)據(jù)(當(dāng)前這一次傳遞給我們的, 并不是總數(shù)))
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
{
[self.receivedData appendData:data];
}
請求錯誤時調(diào)用(請求超時)
- (void)connection:(NSURLConnection *)connection
didFailWithError:(NSError *)error
{
// 釋放數(shù)據(jù)對象
self.connection = nil;
self.receivedData = nil;
// 通知用戶
NSLog(@"連接失敗! Error - %@ %@",
[error localizedDescription],
[[error userInfo] objectForKey:NSURLErrorFailingURLStringErrorKey]);
}
請求完成
- (void)connectionDidFinishLoading:(NSURLConnection *)connection
{
NSLog(@"Succeeded! Received %lu bytes of data",[self.receivedData length]);
// 釋放數(shù)據(jù)對象
self.connection = nil;
self.receivedData = nil;
}
POST##
發(fā)送POST請求
// 1.創(chuàng)建一個URL
NSURL *url = [NSURL URLWithString:@"http://www.helloworld.com/login"];
// 2.根據(jù)URL創(chuàng)建NSURLRequest對象
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
// 2.1設(shè)置請求方式
// 注意: POST一定要大寫
request.HTTPMethod = @"POST";
// 2.2設(shè)置請求體
// 注意: 如果是給POST請求傳遞參數(shù): 那么不需要寫?號
request.HTTPBody = [@"username=apple&pwd=123&type=JSON" dataUsingEncoding:NSUTF8StringEncoding];
// 3.利用NSURLConnection對象發(fā)送請求
[NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue mainQueue] completionHandler:^(NSURLResponse *response, NSData *data, NSError *connectionError) {
NSLog(@"%@", [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding]);
}];