網絡請求
//.h文件
/**
* 由於項目中幾乎每一個地方都用到了網絡請求 因此能夠把網絡請求封裝一個模塊出來
*(多個地方用到的某個功能 均可以單獨抽出來抽出來 作個功能模塊) <封裝>
*
*/
#import <Foundation/Foundation.h>
//聲明一個 blcok 屬性 用來傳值
//finishBlcok 把請求完畢 解析好的數據傳出來 id 能夠表明任意類型
//解析爲系統的 json 解析 如今外面通常基本全是json
typedef void (^FinishBlock)(id dataResponse);
@interface PKTRequestManager : NSObject<NSURLConnectionDelegate>
@property (strong, nonatomic) NSMutableData *resultData;
@property (nonatomic, strong)FinishBlock finishBlock;
/**
* post 類方法
*
* @param urlStr 接口參數 內部設計了接口基本連接的宏 只傳後面跟的接口參數
* @param paramters 須要傳的參數
* @param block 返回值
*/
+ (void)postRequestWithURL:(NSString *)urlStr
paramters:(NSDictionary *)paramters
finshedBlock:(FinishBlock)block;
@end
//.m文件
#import "PKTRequestManager.h"
#import "APIHeader.h"
//宏
//接口基本連接
@implementation PKTRequestManager
//實現方法
+ (void)postRequestWithURL:(NSString *)urlStr
paramters:(NSDictionary *)paramters
finshedBlock:(FinishBlock)block{
PKTRequestManager *requestManager =[PKTRequestManager new];
requestManager.finishBlock = block;
//拼接接口
NSString *str =[NSString stringWithFormat:@"%@%@",PKAPI,urlStr];
//轉化 url
NSURL *url = [NSURL URLWithString:str];
//使用 NSMutableURLRequest 建立對象
//NSURLRequest 是一個不可變的請求,默認執行的就是GET請求。也就是說,經過NSURLRequest沒法指定 請求方式爲 POST,由於TA是不可變的。
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
[request setHTTPMethod:@"POST"];
//準備發送的字符串
NSString *postStr = @"";
//取出post參數中全部key
NSArray *keyArray = [paramters allKeys];
//遍歷 拼接參數的字符串
for (NSString *keyString in keyArray) {
postStr = [NSString stringWithFormat:@"%@&%@=%@",postStr,keyString,[paramters objectForKey:keyString]];
}
[request setHTTPBody:[postStr dataUsingEncoding:NSUTF8StringEncoding]];
//發出請求
NSURLConnection *connection = [[NSURLConnection alloc]initWithRequest:request delegate:requestManager];
NSLog(connection ? @"網絡鏈接建立成功" : @"網絡鏈接鏈接建立失敗");
}
/**
* 接收到服務器迴應的時回調
*/
- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
{
//強轉 ???
NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *)response;
if (!self.resultData) {
self.resultData = [[NSMutableData alloc]init];
} else {
[self.resultData setLength:0]; ///?? 完全釋放內存 若是存在作清零處理
}
if ([response respondsToSelector:@selector(allHeaderFields)]) {
// 取得全部的請求的頭
NSDictionary *dic = [httpResponse allHeaderFields];
NSLog(@"network---Header:%@",[dic description]);
}
}
/**
* 接收到服務器傳輸數據的時候調用,此方法根據數據大小執行若干次
*/
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
{
[self.resultData appendData:data];
}
/**
* 數據傳完以後調用此方法
*/
- (void)connectionDidFinishLoading:(NSURLConnection *)connection
{
NSError *error;
//???下面 泛型接受 字典 或者數組
id dic = [NSJSONSerialization JSONObjectWithData:self.resultData options:NSJSONReadingMutableContainers error:&error];
if (error) {
NSLog(@"解析錯誤");
self.finishBlock(nil);
}
if (self.finishBlock) {
self.finishBlock(dic);
}
}
/**
* 網絡請求過程當中,出現任何錯誤(斷網,鏈接超時等)會進入此方法
*/
- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
{
NSLog(@"network error : %@", [error localizedDescription]);
if (self.finishBlock) {
self.finishBlock(nil);
}
}
@end