04、数据请求

一、HTTP协议的常见请求方式

无论是哪种请求方式都应该在info.plist文件中设置网络权限


04、数据请求_第1张图片
权限设置.png

首先是GET请求
//get请求
-(void)getMethod{
   //创建会话对象,用来建立客户端和服务端的会话(通信)
    //session一共有三种会话模式:默认,瞬时,后台
    NSURLSession* session=[NSURLSession sharedSession];
    //网址
    NSURL* url=[NSURL URLWithString:@"http://ipad-bjwb.bjd.com.cn/DigitalPublication/publish/Handler/APINewsList.ashx?date=20151101&startRecord=1&len=5&udid=1234567890&terminalType=Iphone&cid=213"];
    //建立任务对象  任务类为NSURLSessionDataTask,他有三个子类:NSURLSessionDataTask(加载任务)、NSURLSessionUpLoadTask(上传任务)、NSURLSessionDownLoadTask(下载任务),根据不同的需求使用对应的任务对象
    //直接使用url,没有设置请求方式,默认为get请求
    NSURLSessionDataTask* task=[session dataTaskWithURL:url completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) {
        //data:请求返回的数据
        //response:响应对象,里面包含了少量数据和响应头
        //error:响应出问题时返回的错误日志
        
        //根据返回的数据结构进行对应的解析
        if (data) {
            NSDictionary* dic=[NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingAllowFragments error:nil];
//            NSLog(@"%@",[[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding]);
             NSLog(@"%@",dic);
        }else{
            NSLog(@"未请求到数据");
        }
    } ];
    
    //启动任务
    [task resume];
    
}

下面是第二种GET请求的方式

//第二种get请求
-(void)newGetMethod{
    //创建会话模式对象
    //默认:向后台请求数据的时候,如果数据没有发生变化,就从本地缓存进行加载,如果没有变化,重新从服务器获取数据,如果本地没有缓存,直接从服务器获取
//    NSURLSessionConfiguration* configuration=[NSURLSessionConfiguration defaultSessionConfiguration];
    //瞬时:本地不会做任何缓存,每次请求都是从服务器获取新数据
    NSURLSessionConfiguration* ephemeralConfiguration=[NSURLSessionConfiguration ephemeralSessionConfiguration];
    //后台:如果有些网络请求需要在客户端后台进行操作,那么就需要使用该种会话模式,使用时需要加一个标记,方便查找和操作
//     NSURLSessionConfiguration* backgroundConfiguration=[NSURLSessionConfiguration backgroundSessionConfigurationWithIdentifier:@"background"];
   //创建会话对象  设置一下会话模式
    NSURLSession* session=[NSURLSession sessionWithConfiguration:ephemeralConfiguration];
    //创建网址
      NSURL* url=[NSURL URLWithString:@"http://ipad-bjwb.bjd.com.cn/DigitalPublication/publish/Handler/APINewsList.ashx?date=20151101&startRecord=1&len=5&udid=1234567890&terminalType=Iphone&cid=213"];
    //创建请求对象  可变的requset对象可以设置请求方式(默认的请求方式为GET),还可以设置请求体(转换成data类型的参数)
    NSURLRequest* request=[NSURLRequest requestWithURL:url];
    //创建任务对象
    NSURLSessionDataTask* task=[session dataTaskWithRequest:request completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) {
        if (data) {
            NSDictionary* dic=[NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingAllowFragments error:nil];
//            NSLog(@"%@",[[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding]);
             NSLog(@"%@",dic);
        }else{
            NSLog(@"未请求到数据");
        }
    }];
    //启动任务
    [task resume];
  
}

还可以使用协议代理,首先遵循协议
NSURLSessionDelegate,NSURLSessionDataDelegate

-(void)delegate{
    NSURLSession* session = [NSURLSession sessionWithConfiguration:[NSURLSessionConfiguration defaultSessionConfiguration] delegate:self delegateQueue:[[NSOperationQueue alloc]init]];
    //创建任务
    NSURLSessionDataTask* task = [session dataTaskWithRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://ipad-bjwb.bjd.com.cn/DigitalPublication/publish/Handler/APINewsList.ashx?date=20151101&startRecord=5&len=10&udid=1234567890&terminalType=Iphone&cid=213"]]];
    //启动任务
    [task resume];
}

协议方法

//代理方法
//服务器开始响应 准备返回数据
-(void)URLSession:(NSURLSession *)session dataTask:(NSURLSessionDataTask *)dataTask didReceiveResponse:(NSURLResponse *)response completionHandler:(void (^)(NSURLSessionResponseDisposition))completionHandler{
    NSLog(@"服务器开始响应");
    //允许处理服务器的响应,才会继续接收服务器返回的数据
    completionHandler(NSURLSessionResponseAllow);
    
}
-(void)URLSession:(NSURLSession *)session dataTask:(NSURLSessionDataTask *)dataTask didReceiveData:(NSData *)data{
    NSLog(@"客户端接收数据");
    
    NSLog(@"dic---%@",[[NSString alloc]initWithData:data encoding:NSUTF8StringEncoding]);
    
    
}
-(void)URLSession:(NSURLSession *)session task:(NSURLSessionTask *)task didCompleteWithError:(NSError *)error{
    NSLog(@"数据接收完成,网络请求成功");
}
POST请求
//post请求
-(void)postMethod{
    //session对象
    NSURLSession* session=[NSURLSession sharedSession];
    //网址
    NSURL* url=[NSURL URLWithString:@"http://ipad-bjwb.bjd.com.cn/DigitalPublication/publish/Handler/APINewsList.ashx"];
    //?date=20151101&startRecord=1&len=5&udid=1234567890&terminalType=Iphone&cid=213
    //如果我们使用的是post请求方式,就需要用到可变的mRequest对象
    NSMutableURLRequest* mRequest=[NSMutableURLRequest requestWithURL:url];
    //设置请求方式,默认为GET
    mRequest.HTTPMethod=@"POST";
    //设置请求体
    NSString* postStr=@"date=20151101&startRecord=1&len=5&udid=1234567890&terminalType=Iphone&cid=213";
    NSData* postData=[postStr dataUsingEncoding:NSUTF8StringEncoding];
    mRequest.HTTPBody=postData;
    //创建任务对象
    NSURLSessionDataTask* task=[session dataTaskWithRequest:mRequest completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) {
        if (data) {
            NSDictionary* dic=[NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingAllowFragments error:nil];
//            NSLog(@"%@",[[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding]);
            NSLog(@"%@",dic);
        }else{
            NSLog(@"未请求到数据");
        }
    }];
    //启动任务
    [task resume];
  
}
两种请求方式进行比较

不同点:
1.给服务器传输数据的方式不同
GET:通过网址字符串
POST:通过Data
2.传输数据的大小
GET:网址字符串最多为255字节
POST:使用NSData,容量超过1G
3.安全性
GET:所有传输给服务的数据,显示在网址里,类似于密码的明文输入,直接可见
POST:数据被转成NSData,类似于密码的密文输入,无法直接读取

下载
//下载
-(void)downLoadMethod{
    NSURLSession* session=[NSURLSession sharedSession];
    NSURL* url=[NSURL URLWithString:@"http://e.hiphotos.baidu.com/image/pic/item/7af40ad162d9f2d3433e1c33acec8a136327cc3a.jpg"];
    NSURLSessionDownloadTask* task=[session downloadTaskWithURL:url completionHandler:^(NSURL * _Nullable location, NSURLResponse * _Nullable response, NSError * _Nullable error) {
        //location:下载完成的数据所在的地址,在tmp临时文件中
        //由于临时文件夹中的文件一般在下载结束后,如果不使用,就会被干掉,所以我们会将下载好的文件移动到我们指定的位置保存
        // /Users/xalo/Desktop/
         NSString* dsiPath=@"/Users/xalo/Desktop/test.png";
        //将文件路径转换为url类型
        NSURL* urlPath=[NSURL fileURLWithPath:dsiPath];
        NSFileManager* manager=[NSFileManager defaultManager];
        //将文件拷贝到指定路径下
       BOOL isSuccess= [manager copyItemAtURL:location toURL:urlPath error:nil];
        if (isSuccess) {
            NSLog(@"文件下载成功");
        }else{
             NSLog(@"文件下载失败");
        }
    }];
   //启动任务
    [task resume];       
}

以上方法都需要在ViewDidLoad中调用即可

你可能感兴趣的:(04、数据请求)