如何制作json帖子请求?

时间:2016-02-12 10:31:12

标签: ios objective-c nsurlconnection jsonresponse

我必须使用以下请求参数进行json post请求,

{   
    "method":"login", 
    "data":{  
        "username":"korea", 
        "password":"123456" 
    } 
} 

我使用以下代码发出请求,

NSString *jsonRequest = [NSString stringWithFormat:@"{""\"\method:\"\login\"\"\,""\data:\"{\"\"username\":\"%@\",\"password\":\"%@\"}",username,password];
    NSLog(@"Request: %@", jsonRequest);

    NSURL *url = [NSURL URLWithString:@"http://myurl..."];

    NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL:url];
    NSData *requestData = [NSData dataWithBytes:[jsonRequest UTF8String] length:[jsonRequest length]];

    [request setHTTPMethod:@"POST"];
    [request setValue:@"application/json" forHTTPHeaderField:@"Accept"];
    [request setValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
    [request setValue:[NSString stringWithFormat:@"%d", [requestData length]] forHTTPHeaderField:@"Content-Length"];
    [request setHTTPBody: requestData];

    NSURLConnection *connection = [NSURLConnection connectionWithRequest:request delegate:self];

我必须得到答复,但我无法得到答复

1 个答案:

答案 0 :(得分:2)

试试这个

    NSDictionary *objectDic = @{@"username" : username, @"password" : password};
    NSDictionary *dataDic = @{@"data" : objectDic};
    NSDictionary *methodDic = @{@"method" : @"login", @"data": dataDic};

    NSData *requestData = [NSJSONSerialization dataWithJSONObject:methodDic
                                               options:NSJSONWritingPrettyPrinted
                                                 error:nil];
    [request setHTTPBody: requestData];