zoukankan      html  css  js  c++  java
  • NSURLSession实践(结合POST和GET请求JSON和XML数据)

    GET方法解析JSON数据,使用NSJSONSerialization

     1     NSString *appkey = @"bf1d95bd730f031fb019ba80ffabb89d";
     2     NSString *baseURL = @"http://op.juhe.cn/onebox/weather/query";
     3     NSString *url = [baseURL stringByAppendingString:[NSString stringWithFormat:@"?cityname=%@&dtype=&key=%@", @"上海", appkey]];
     4     NSString *urlStr = [url stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLQueryAllowedCharacterSet]];
     5     NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:urlStr]];
     6     request.HTTPMethod =@"GET";
     7     request.timeoutInterval = 20;
     8     request.cachePolicy = NSURLRequestReturnCacheDataElseLoad;
     9     
    10     NSURLSession *session = [NSURLSession sharedSession];
    11     NSURLSessionDataTask *task = [session dataTaskWithRequest:request completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) {
    12         NSDictionary *dict = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers error:nil];
    13         NSLog(@"%@", [dict allKeys]);
    14     }];
    15     [task resume];

    POST方法解析JSON数据,使用NSJSONSerialization,其他参数和之前一样

     1     //设置请求体
     2     NSString *bodyStr = [NSString stringWithFormat:@"cityname=%@&dtype=&key=%@", @"上海", appkey];
     3     NSString *body = [bodyStr stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLQueryAllowedCharacterSet]];
     4     NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:baseURL]];
     5     request.HTTPBody = [body dataUsingEncoding:NSUTF8StringEncoding];
     6     request.HTTPMethod =@"POST";
     7     request.timeoutInterval = 20;
     8     request.cachePolicy = NSURLRequestReturnCacheDataElseLoad;
     9     
    10     NSURLSession *session = [NSURLSession sharedSession];
    11     NSURLSessionDataTask *task = [session dataTaskWithRequest:request completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) {
    12         NSDictionary *dict = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers error:nil];
    13         NSLog(@"%@", [dict allKeys]);
    14     }];
    15     [task resume];
  • 相关阅读:
    解上三角矩阵和下三角矩阵方程的fortran程序
    用sublimetext写fortran程序
    fortran子程序传入可变数组要在module里实现
    ubuntu wineqq 输入中文显示方格的问题
    mathtype快捷键很方便+公式上边不显示问题的解决
    滚动字符小程序-python
    传递矩阵法求简支梁固有频率的近似解 --matlab程序
    explorer.exe总是重启导致打开的文件夹关闭
    python把数据分为训练部分和测试部分的简单实现
    用python批量删掉文件名中共同存在的字符
  • 原文地址:https://www.cnblogs.com/xiayao/p/5265672.html
Copyright © 2011-2022 走看看