1

我正在尝试做一个简单的 POST 请求。然而,在 chrome 和 iOS 模拟器中的 POSTMAN 插件中,结果似乎有所不同。

这是来自 POSTMAN 的快照:

在此处输入图像描述

在此处输入图像描述

如您所见,我在 retun 中获得了 JSON 数据。

这是我执行 POST 请求的代码:

    NSError *error;
    NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration];
    NSURLSession *session = [NSURLSession sessionWithConfiguration:configuration delegate:self delegateQueue:nil];
    NSURL *url = [NSURL URLWithString:kPostURL];
    NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url
                                                           cachePolicy:NSURLRequestUseProtocolCachePolicy
                                                       timeoutInterval:60.0];

    [request addValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
    [request addValue:@"application/json" forHTTPHeaderField:@"Accept"];

    [request setHTTPMethod:@"POST"];


    NSString *params =[[NSString alloc] initWithFormat:@"fname=%@&lname=%@&email=%@&password=%@&switchid=%d&didflag=%@",fname,lname,email,pass,switchid,flag];

    [request setHTTPBody:[params dataUsingEncoding:NSUTF8StringEncoding]];
    NSURLSessionDataTask *postDataTask = [session dataTaskWithRequest:request completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {

        NSLog(@"response is %@",response);
        NSLog(@"erros is %@",error);

        NSMutableDictionary * innerJson = [NSJSONSerialization
                                           JSONObjectWithData:data options:kNilOptions error:&error
                                           ];
        NSLog(@"JSON data is %@",innerJson);

    }];

    [postDataTask resume];

当我尝试在调试器中打印值时,我得到

JSON作为nullNSData作为0 bytes。但我明白了status code as 200这是成功的。

这是我得到的回复:

      { status code: 200, headers {
    Connection = "Keep-Alive";
    "Content-Length" = 0;
    "Content-Type" = "text/html";
    Date = "Thu, 25 Feb 2016 02:04:02 GMT";
    "Keep-Alive" = "timeout=5";
    Server = "Apache/2.4.12";
    "X-Powered-By" = "PHP/5.5.30";
} }

为什么我将 NSData 设为 0 字节?

4

1 回答 1

2

在 chrome 中的请求中,您将参数作为 URL 参数。在 ObjC 版本中,您将参数添加为帖子的一部分。

而不是将参数添加为主体的一部分:

[request setHTTPBody:[params dataUsingEncoding:NSUTF8StringEncoding]];

将其添加为查询的一部分:

NSURL *url = [NSURL URLWithString:[kPostURL stringByAppendingFormat:@"?%@", params]];
于 2016-02-25T02:23:34.653 回答