GET/POST异步请求方法
字符串转化成url字符串
NSString *strURL = [[NSString alloc] initWithFormat:@"http://www.51work6.com/service/mynotes/WebService.php?email=%@&type=%@&action=%@", @"test@51work6.com", @"JSON", @"query”];
strURL = [strURL stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLQueryAllowedCharacterSet]];
创建URL及request 请求URL
NSURL *url = [NSURL URLWithString:strURL];
get请求:
NSURLRequest *request = [[NSURLRequest alloc] initWithURL:url];
post请求:
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
[request setHTTPMethod:@"POST”];
[request setHTTPBody:postData];
创建NSURLSessionConfiguration对象,分别配置每一个 session 对象。( NSURLConnection 很难做到 )
NSURLSessionConfiguration *defaultConfig = [NSURLSessionConfiguration defaultSessionConfiguration];
分类:
1) defaultSessionConfiguration: 默认 session 配置,类似NSURLConnection 的标准配置,使用硬盘来存储缓存数据。
2) backgroundSessionConfiguration: 后台session配置,与默认配置类似,不同的是会在后台开启另一个线程来处理网络数据。
注意: 这里如果设置了超时限制的话,可能会导致一直下载失败。因为后台下载会根据设备的负载程度决定分配下载的资源。
PS: 后台处理,由系统统一决定,并且所有的需要后台处理的都会被同时列队,或者说同时进行,只要负载允许;
创建NSURLSession对象并添加到主队列中
NSURLSession *session = [NSURLSession sessionWithConfiguration: defaultConfig delegate: nil delegateQueue: [NSOperationQueue mainQueue]];
创建sessiontask 对象
Session Task分为三种Data Task,Upload Task,Download Task。
NSURLSessionDataTask *task = [session dataTaskWithRequest:<#(nonnull NSURLRequest *)#> completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) {
NSLog(@"请求完成");
NSDictionary *resDict = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingAllowFragments error:nil];
}];
// 使用resume方法启动任务
[task resume];