通过 POST 发送 JSON 不起作用 - 目标 C

Posted

技术标签:

【中文标题】通过 POST 发送 JSON 不起作用 - 目标 C【英文标题】:Sending JSON through POST not working - Objective C 【发布时间】:2012-05-30 01:31:53 【问题描述】:

我正在使用 POST 方法向我们的服务器发送一个 JSON 字符串。应该发生的是它应该返回一个显示“Array(JSON String)Array(JSON String)”的响应。响应包含两个数组:如果我使用 POST 方法,则填充第一个数组,如果我使用 GET 方法,则填充第二个数组。我尝试通过 GET 方法发送 JSON,并且确实填充了第二个数组。但是,当我尝试通过 POST 方法发送 JSON 时,两个数组都返回为空。

这是我使用的代码:

NSData *requestData = [NSJSONSerialization dataWithJSONObject:sqlArray options:NSJSONWritingPrettyPrinted error:&error];

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

NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:60];

[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];

NSData *result =[NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];

NSString *returnString = [[NSString alloc] initWithData:result encoding:NSUTF8StringEncoding];

if (error == nil)
    NSLog(@"The Result string: %@", returnString);   

你能告诉我我的代码有什么问题吗?

【问题讨论】:

@Hot Licks 实际上我不知道,因为可以访问服务器的人不在身边。他只是告诉我,为了让我判断 POST 是否成功,我应该收到上面的响应。 :// 这类似于***.com/questions/4456966/… 首先在您的浏览器中试用,有可用的浏览器 REST 工具包。 【参考方案1】:

这就是我要做的(请注意,转到我的服务器的 JSON 需要是一个字典,其中 key = question..即 :question => dictionary 具有一个值(另一个字典)):

NSArray *objects = [NSArray arrayWithObjects:[[NSUserDefaults standardUserDefaults]valueForKey:@"StoreNickName"],
  [[UIDevice currentDevice] uniqueIdentifier], [dict objectForKey:@"user_question"],     nil];
NSArray *keys = [NSArray arrayWithObjects:@"nick_name", @"UDID", @"user_question", nil];
NSDictionary *questionDict = [NSDictionary dictionaryWithObjects:objects forKeys:keys];

NSDictionary *jsonDict = [NSDictionary dictionaryWithObject:questionDict forKey:@"question"];

NSString *jsonRequest = [jsonDict JSONRepresentation];

NSLog(@"jsonRequest is %@", jsonRequest);

NSURL *url = [NSURL URLWithString:@"https://xxxxxxx.com/questions"];

NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url
             cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:60.0];


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 alloc]initWithRequest:request delegate:self];
if (connection) 
 receivedData = [[NSMutableData data] retain];

The receivedData is then handled by:

NSString *jsonString = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
NSDictionary *jsonDict = [jsonString JSONValue];
NSDictionary *question = [jsonDict objectForKey:@"question"];

这不是 100% 清楚的,需要重新阅读,但所有内容都应该在这里帮助您入门。据我所知,这是异步的。进行这些调用时,我的 UI 未锁定。希望对您有所帮助。

【讨论】:

请编辑您的答案并格式化代码以使其可读。

以上是关于通过 POST 发送 JSON 不起作用 - 目标 C的主要内容,如果未能解决你的问题,请参考以下文章

向 FCM 服务器发送 JSON 请求不起作用

Spring Rest API 的 AJAX POST 方法不起作用

将类型切换为 POST 而不是 GET 后 JSON 调用不起作用

asp.net core 3 Web API !发送 json 到 POST 动作

WebTestCase Phpunit发送原始数据不起作用

尽管使用了 CORS,但对 expressjs 的 POST 请求不起作用