
該類的封裝主要是為了解決如何通過網(wǎng)絡(luò)加載數(shù)據(jù)(JSON)
封裝的主要流程:
1.url(可帶參數(shù))
2.request(請求頭,請求體)
3.session
4.task
5.resume
這次我們封裝了三個方法:
//使用get方法
+(void)getWithURL:(NSString)urlStr
params:(NSMutableDictionary)params
headerField:(NSMutableDictionary*)headerFields
comPletionBlock:(CompletionBlock)block;
//post請求
/*發(fā)送post請求
*url:本地url的字符串
*params:參數(shù)(字典) 簡單的數(shù)據(jù)
headerField:請求頭
formData:請求體(復(fù)雜的數(shù)據(jù) imageData)
block:成功的block
@return:nil
/
//使用post方法
+(void)postWithURL:(NSString)urlStr
params:(NSMutableDictionary)params
headerField:(NSMutableDictionary)headerFields
formData:(NSData)formData
comPletionBlock:(CompletionBlock)block;
//post和get方法混合封裝
+(void) getAndPostWithURL:(NSString)urlStr
params:(NSMutableDictionary)params
httpMethod:(NSString ) mothod
headerField:(NSMutableDictionary)headerFields
formData:(NSData*)formData
comPletionBlock:(CompletionBlock)block;
主要實(shí)現(xiàn)代碼:
#import "WCDataService.h"
#define boundary @"asdfasdfas"
//需要訪問的網(wǎng)址前綴
#define BaseURL @"https://api.weibo.com/2/"
@implementation WCDataService
+(void)getWithURL:(NSString*)urlStr
params:(NSMutableDictionary*)params
headerField: (NSMutableDictionary*)headerFields
comPletionBlock:(CompletionBlock)block{
//使用NSUrlSession
//1 url
NSString *urlString = [BaseURL stringByAppendingString:urlStr];
//添加一個公共的請求頭
// [request setValue:@"gzip" forHTTPHeaderField:@"Accept-Encoding"];
//@{key1:value1,key2:value2}
//裝換成字符串
//key1=value1&key2=value2
if (params == nil) {
params = [NSMutableDictionary dictionary];
}
NSMutableString *paramStr = [NSMutableString string];
for (NSString *key in params) {
id value = [params objectForKey:key];
NSString *keyValue = [NSString stringWithFormat:@"%@=%@&",key,value];
[paramStr appendFormat:@"%@",keyValue];
}
//循環(huán)完后 paramStr: key1=value1&key2=value2&
//刪除字符串最后一個字符 key1=value1&key2=value2
[paramStr deleteCharactersInRange:NSMakeRange(paramStr.length-1, 1)];
NSString *fullUrlStr = [urlString stringByAppendingFormat:@"?%@",paramStr];
NSURL *url = [NSURL URLWithString:fullUrlStr];
//2 request 請求( 請求體)
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:120];
//請求方式
[request setHTTPMethod:@"GET"];
//請求頭
[request setAllHTTPHeaderFields:headerFields];
//3 session
NSURLSession *session = [NSURLSession sharedSession];
//4 task
NSURLSessionDataTask *task = [session dataTaskWithRequest:request completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) {
if (error != nil) {
NSLog(@"error = %@",error);
return;
}
NSHTTPURLResponse *httpRes = (NSHTTPURLResponse*)response;
if (httpRes.statusCode == 200) {
id jsonData = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers error:nil];
//block的回調(diào)
//作用:將新的數(shù)據(jù)顯示在界面上,要回調(diào)主線程 dispatch_async(dispatch_get_main_queue(), ^{
block(jsonData);
});
}else{
NSLog(@"%ld",httpRes.statusCode);
}
}];
//5 resume
[task resume];
}
+(void)postWithURL:(NSString*)urlStr
params:(NSMutableDictionary*)params
headerField:(NSMutableDictionary*)headerFields
formData:(NSData*)formData
comPletionBlock:(CompletionBlock)block{
//使用NSUrlSession
//1 url
NSString *urlString = [BaseURL stringByAppendingString:urlStr];
NSURL *url = [NSURL URLWithString:urlString];
//2 request 請求( 請求體)
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:120];
//請求方式
[request setHTTPMethod:@"POST"];
//請求頭
[request setAllHTTPHeaderFields:headerFields];
//添加一個公共的請求頭
// [request setValue:@"gzip" forHTTPHeaderField:@"Accept-Encoding"];
//重點(diǎn):請求體
if (formData ==nil) {
//發(fā)微博文字 (簡單數(shù)據(jù))
//@{key1:value1,key2:value2}
//裝換成字符串
//key1=value1&key2=value2
NSMutableString *paramStr = [NSMutableString string];
for (NSString *key in params) {
id value = [params objectForKey:key];
NSString *keyValue = [NSString stringWithFormat:@"%@=%@&",key,value];
[paramStr appendFormat:@"%@",keyValue];
}
//循環(huán)完后 paramStr: key1=value1&key2=value2&
//刪除字符串最后一個字符
[paramStr deleteCharactersInRange:NSMakeRange(paramStr.length-1, 1)];
//字符串---->NSData
NSData *bodyData = [paramStr dataUsingEncoding:NSUTF8StringEncoding];
[request setHTTPBody:bodyData];
}else{
//發(fā)微博+圖片 (有復(fù)雜數(shù)據(jù))
//(2)請求頭
//上傳任務(wù),必須要添加的字段
NSString *contentType = [NSString stringWithFormat:@"multipart/form-data; charset=utf-8;boundary=%@",boundary];
[request setValue:contentType forHTTPHeaderField:@"Content-Type"];
//(3)請求體
//[1] 文字(參數(shù)) [2]data:(formData)
NSData *bodydata = [self buildBodyDataWithParams:params formData:formData];
[request setHTTPBody:bodydata];
}
//3 session
NSURLSession *session = [NSURLSession sharedSession];
//4 task
NSURLSessionDataTask *task = [session dataTaskWithRequest:request completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) {
if (error != nil) {
NSLog(@"error = %@",error);
return;
}
NSHTTPURLResponse *httpRes = (NSHTTPURLResponse*)response;
if (httpRes.statusCode == 200) {
id jsonData = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers error:nil];
//block的回調(diào)
//作用:將新的數(shù)據(jù)顯示在界面上,要回調(diào)主線程
dispatch_async(dispatch_get_main_queue(), ^{
block(jsonData);
});
}else{
NSLog(@"%ld",httpRes.statusCode);
}
}];
//5 resume
[task resume];
}
+(NSData*)buildBodyDataWithParams:(NSMutableDictionary*)params formData:(NSData*)formData{
//(1)bodyStr
NSMutableString *bodyStr = [NSMutableString string];
for (NSString *key in params) {
id value = [params objectForKey:key];
[bodyStr appendFormat:@"--%@\r\n",boundary];//\n:換行 \n:切換到行首
[bodyStr appendFormat:@"Content-Disposition: form-data; name=\"%@\"",key];
[bodyStr appendFormat:@"\r\n\r\n"];
[bodyStr appendFormat:@"%@\r\n",value];
}
//3 pic
/*
--AaB03x
Content-disposition: form-data; name="pic"; filename="file"
Content-Type: application/octet-stream
*/
[bodyStr appendFormat:@"--%@\r\n",boundary];
[bodyStr appendFormat:@"Content-disposition: form-data; name=\"pic\"; filename=\"file\""];
[bodyStr appendFormat:@"\r\n"];
[bodyStr appendFormat:@"Content-Type: application/octet-stream"];
[bodyStr appendFormat:@"\r\n\r\n"];
NSMutableData *bodyData = [NSMutableData data];
//(1)startData
NSData *startData = [bodyStr dataUsingEncoding:NSUTF8StringEncoding];
[bodyData appendData:startData];
//(2)pic
[bodyData appendData:formData];
//(3)--Str--
NSString *endStr = [NSString stringWithFormat:@"\r\n--%@--\r\n",boundary];
NSData *endData = [endStr dataUsingEncoding:NSUTF8StringEncoding];
[bodyData appendData:endData];
return bodyData;
}
+(void) getAndPostWithURL:(NSString*)urlStr
params:(NSMutableDictionary*)params
httpMethod:(NSString *) mothod
headerField:(NSMutableDictionary*)headerFields
formData:(NSData*)formData
comPletionBlock:(CompletionBlock)block{
if ([mothod isEqualToString:@"GET"]) {
//使用NSUrlSession
//1 url
NSString *urlString = [BaseURL stringByAppendingString:urlStr];
//添加一個公共的請求頭
// [request setValue:@"gzip" forHTTPHeaderField:@"Accept-Encoding"];
//@{key1:value1,key2:value2}
//裝換成字符串
//key1=value1&key2=value2
if (params == nil) {
params = [NSMutableDictionary dictionary];
}
NSMutableString *paramStr = [NSMutableString string];
for (NSString *key in params) {
id value = [params objectForKey:key];
NSString *keyValue = [NSString stringWithFormat:@"%@=%@&",key,value];
[paramStr appendFormat:@"%@",keyValue];
}
//循環(huán)完后 paramStr: key1=value1&key2=value2&
//刪除字符串最后一個字符 key1=value1&key2=value2
[paramStr deleteCharactersInRange:NSMakeRange(paramStr.length-1, 1)];
NSString *fullUrlStr = [urlString stringByAppendingFormat:@"?%@",paramStr];
NSURL *url = [NSURL URLWithString:fullUrlStr];
//2 request 請求( 請求體)
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:120];
//請求方式
[request setHTTPMethod:@"GET"];
//請求頭
[request setAllHTTPHeaderFields:headerFields];
//3 session
NSURLSession *session = [NSURLSession sharedSession];
//4 task
NSURLSessionDataTask *task = [session dataTaskWithRequest:request completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) {
if (error != nil) {
NSLog(@"error = %@",error);
return;
}
NSHTTPURLResponse *httpRes = (NSHTTPURLResponse*)response;
if (httpRes.statusCode == 200) {
id jsonData = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers error:nil];
//block的回調(diào)
//作用:將新的數(shù)據(jù)顯示在界面上,要回調(diào)主線程
dispatch_async(dispatch_get_main_queue(), ^{
block(jsonData);
});
}else{
NSLog(@"%ld",httpRes.statusCode);
}
}];
//5 resume
[task resume];
}else {
//使用NSUrlSession
//1 url
NSString *urlString = [BaseURL stringByAppendingString:urlStr];
NSURL *url = [NSURL URLWithString:urlString];
//2 request 請求( 請求體)
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:120];
//請求方式
[request setHTTPMethod:@"POST"];
//請求頭
[request setAllHTTPHeaderFields:headerFields];
//添加一個公共的請求頭
// [request setValue:@"gzip" forHTTPHeaderField:@"Accept-Encoding"];
//重點(diǎn):請求體
if (formData ==nil) {
//發(fā)微博文字 (簡單數(shù)據(jù))
//@{key1:value1,key2:value2}
//裝換成字符串
//key1=value1&key2=value2
NSMutableString *paramStr = [NSMutableString string];
for (NSString *key in params) {
id value = [params objectForKey:key];
NSString *keyValue = [NSString stringWithFormat:@"%@=%@&",key,value];
[paramStr appendFormat:@"%@",keyValue];
}
//循環(huán)完后 paramStr: key1=value1&key2=value2&
//刪除字符串最后一個字符
[paramStr deleteCharactersInRange:NSMakeRange(paramStr.length-1, 1)];
//字符串---->NSData
NSData *bodyData = [paramStr dataUsingEncoding:NSUTF8StringEncoding];
[request setHTTPBody:bodyData];
}else{
//發(fā)微博+圖片 (有復(fù)雜數(shù)據(jù))
//(2)請求頭
//上傳任務(wù),必須要添加的字段
NSString *contentType = [NSString stringWithFormat:@"multipart/form-data; charset=utf-8;boundary=%@",boundary];
[request setValue:contentType forHTTPHeaderField:@"Content-Type"];
//(3)請求體
//[1] 文字(參數(shù)) [2]data:(formData)
NSData *bodydata = [self buildBodyDataWithParams:params formData:formData];
[request setHTTPBody:bodydata];
}
//3 session
NSURLSession *session = [NSURLSession sharedSession];
//4 task
NSURLSessionDataTask *task = [session dataTaskWithRequest:request completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) {
if (error != nil) {
NSLog(@"error = %@",error);
return;
}
NSHTTPURLResponse *httpRes = (NSHTTPURLResponse*)response;
if (httpRes.statusCode == 200) {
id jsonData = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers error:nil];
//block的回調(diào)
//作用:將新的數(shù)據(jù)顯示在界面上,要回調(diào)主線程 dispatch_async(dispatch_get_main_queue(), ^{
block(jsonData);
});
}else{
NSLog(@"%ld",httpRes.statusCode);
}
}];
//5 resume
[task resume];
}
}
@end
#import "ViewController.h"
#import "WCDataService.h"
@interface ViewController ()
@end
@implementation ViewController
/*
封裝一個類,實(shí)現(xiàn)發(fā)微博(+圖片)的功能.
*/
- (void)viewDidLoad {
[super viewDidLoad];
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithDictionary:@{@"access_token":@"2.00fjYQRGL1iBSB1333146920fDF65B",@"status":@"我們在封裝..."
}]; //access_token是微博網(wǎng)頁自動獲取的
//使用get方法微博是寫入不可用
// [WCDataService getWithURL:@"statuses/update.json" params:params headerField:nil comPletionBlock:^(id data) {
//
// NSLog(@"get:data = %@",data);
//
// }];
[WCDataService postWithURL:@"statuses/update.json" params:params headerField:nil formData:nil comPletionBlock:^(id data) {
NSLog(@"data = %@",data);
//data ----model
//model---->UI
}];
}
@end
運(yùn)行效果:
