IOS 7 利用系统自带库进行 POST JSON 异步访问操作

在上篇文章中我谈到了使用 ASIHTTPRequest JSONKit 等开源库进行 POST JSON 到服务器的操作。IOS 使用 POST、GET 提交 JSON 数据到服务器由于在后续的开发中发现了一些问题(Stack overflow)Use ASIHTTPRequest to startAsynchronous and update UITableView but failed with EXC_BAD_ACCESS经过外国友人提示:ASIHTTPRequest 已经停止维护、在 IOS 7中存在已知 bug 。同时@未解 同学也建议我采用 AFNetworking。但是又不想学习其它的库操作,于是尝试使用系统自带的库进行 POST 操作。

(void)PostJson{

__block NSMutableDictionary *resultsDictionary;
/*
* 这里 __block 修饰符必须要 因为这个变量要放在 block 中使用
*/
NSDictionary *userDictionary = [[NSDictionary alloc] initWithObjectsAndKeys:@"first title", @"title",@"1",@"blog_id", nil];//假设要上传的 JSON 数据结构为 {"title":"first title","blog_id":"1"}
if ([NSJSONSerialization isValidJSONObject:userDictionary])//判断是否有效
{
    NSError* error;
    NSData* jsonData = [NSJSONSerialization dataWithJSONObject:userDictionary options:NSJSONWritingPrettyPrinted error: &error];//利用系统自带 JSON 工具封装 JSON 数据
    NSURL* url = [NSURL URLWithString:@"www.google.com"];
    NSMutableURLRequest* request = [NSMutableURLRequest requestWithURL:url cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:30.0];
    [request setHTTPMethod:@"POST"];//设置为 POST 
    [request setValue:@"application/json" forHTTPHeaderField:@"Accept"];
    [request setValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
    [request setValue:[NSString stringWithFormat:@"%d",[jsonData length]] forHTTPHeaderField:@"Content-length"];
    [request setHTTPBody:jsonData];//把刚才封装的 JSON 数据塞进去
     __block NSError *error1 = [[NSError alloc] init];

     /*
     *发起异步访问网络操作 并用 block 操作回调函数
     */
    [NSURLConnection sendAsynchronousRequest:request queue:[[NSOperationQueue alloc] init] completionHandler:^(NSURLResponse* response,NSData* data,NSError* error)
    {
        if ([data length]>0 && error == nil) {
            resultsDictionary = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableLeaves error:&error1];
            NSLog(@"resultsDictionary is %@",resultsDictionary);

        }else if ([data length]==0 && error ==nil){
            NSLog(@" 下载 data 为空");
        }
        else if( error!=nil){
            NSLog(@" error is %@",error);

        }
    }];
        }
    }
   }

事实上,我把这三行注释掉也是可以的,不知道为什么,请知道去掉会有什么影响的朋友告知我。

    [request setValue:@"application/json" forHTTPHeaderField:@"Accept"];
    [request setValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
    [request setValue:[NSString stringWithFormat:@"%d",[jsonData length]] forHTTPHeaderField:@"Content-length"];
    原文作者:233jl
    原文地址: https://segmentfault.com/a/1190000000537278
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞