IOS开发网络基础01

这篇文章主要是一些基础的知识:
包括:GET请求、POST请求、同步请求、异步请求

1、请求的一般步骤

1.确定地址NSURL
2.建立请求NSURLRequest
3.建立并启动链接NSURLConnection
4.遵守协议NSURLConnectionDataDelegate
这就是请求的节本步骤

同步请求和异步请求

同步请求和异步请求的比较:
同步请求:比如一夫当关万夫莫开的地方要用同步请求(登录)。
异步请求:程序阻塞主线程会影响用户体验,比如tableview加载时同时加载图片,在网速慢的情况下会阻塞其他加载项,图片可以后续加载(凡是可以向后拖得,不是那么重要的事,就可以使用异步加载)。

POST和GET请求

区别主要在:


IOS开发网络基础01_第1张图片
POST&GET.png

google去吧一堆一堆的!!!

同步请求实例

同步请求在网络慢的情况下会阻塞线程。

//主要代码
NSURLResponse *response = nil;
NSError *error = nil;
//同步操作没有执行完成 后面的代码不会执行
NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];

异步请求

//异步请求
    [NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue mainQueue] completionHandler:^(NSURLResponse *response, NSData *data, NSError *connectionError) {
        if(data != nil){
            NSString *str = [[NSString alloc]initWithData:data encoding:NSUTF8StringEncoding];
            NSLog(@"%@---async",str);
        }else if(data == nil && connectionError == nil){
            NSLog(@"接收到空数据async");
        }else{
            NSLog(@"%@",connectionError.localizedDescription);
        }

    }];
    NSLog(@"请求不完成也会执行执行这里!!");

GET请求

   //1.确定地址NSURL
   NSString *urlString = [NSString stringWithFormat:@"http://localhost/01/index.php?username=%@&password=%@",username,password];
    //1.1提示 URL中如果包含中文字符 需要转换成带%的格式。
    urlString = [urlString stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
    //1.2 在ios开发中 如果没有意外使用utf8的格式
    NSURL *url = [NSURL URLWithString:urlString];
    //2.建立请求NSURLRequest
    NSURLRequest *request = [NSURLRequest requestWithURL:url];
    //3.建立并启动链接NSURLConnection
    NSURLConnection *conn = [NSURLConnection connectionWithRequest:request delegate:self];
    //启动连接。异步连接请求
    [conn start];
    self.serverData = [NSMutableData data];

POST请求

    //1.确定地址NSURL
    NSString *urlString = [NSString stringWithFormat:@"http://localhost/01/index.php"];
    
    //1.2 在ios开发中 如果没有意外使用utf8的格式
    NSURL *url = [NSURL URLWithString:urlString];
    //2.建立请求NSURLRequest(psot)
    NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
    //2.1请求方式
    
    [request setTimeoutInterval:2.0f];
    [request setHTTPMethod:@"POST"];
    //2.2数据体(POST 请求中创建数据体时如果有中文 不需要转码,因为NSUTF8StringEncoding 已经实现了转码)
    NSString *bodyStr = [NSString stringWithFormat:@"username=%@&password=%@",username,password];
    //将nsstring转换为nsdata
    NSData *body = [bodyStr dataUsingEncoding:NSUTF8StringEncoding];
    NSLog(@"%@",body);
    [request setHTTPBody:body];
    //3.建立并启动链接NSURLConnection
    NSURLConnection *conn = [NSURLConnection connectionWithRequest:request delegate:self];
    //启动连接。异步连接请求
    [conn start];
    self.serverData = [NSMutableData data];

代理方法

遵守代理 NSURLConnectionDataDelegate
@interface MainViewController ()

#pragma mark - 网络代理方法
#pragma mark 1.接受服务器的响应,服务器要传数据,客户端做接受准备
- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
{
    //服务器通知准备
    //实例化
    
}
#pragma mark 2.接收服务器传输的数据,可能多次执行
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
{
    //每次传输的数据进行拼接
    [self.serverData appendData:data];
}

#pragma mark 3.接收数据完成 , 做后续处理
-(void)connectionDidFinishLoading:(NSURLConnection *)connection
{
    //对方法二的拼接数据进行后续处理 需要中转数据
}
#pragma mark 4.服务器请求失败(网络环境等等)
- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
{
    NSLog(@"连接错误:%@",error.localizedDescription);
}
#pragma mark 5.向服务器发送数据,此方法仅适用于post,尤其上传文件
- (void)connection:(NSURLConnection *)connection didSendBodyData:(NSInteger)bytesWritten totalBytesWritten:(NSInteger)totalBytesWritten totalBytesExpectedToWrite:(NSInteger)totalBytesExpectedToWrite
{
    NSLog(@"发送数据给服务器");
}

NSURLConnection 提供了来那个静态方法,可以直接同步或者异步调用NSURLRequest,而无需通过NSURLConnectionDataDelegate代理获取数据。

做个笔记一起学习....

你可能感兴趣的:(IOS开发网络基础01)