我有一个特定的网址“http://dev.mycompany.com”,我需要向其发送一些数据(采用JSON格式)并获得响应。
我无法在SO上找到大量的文档和相关问题。我已经设法通过NSURLConnection获取数据(没有发送任何数据)并且它运行良好,我到目前为止的代码几乎与https://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/URLLoadingSystem/Tasks/UsingNSURLConnection.html上的代码相同,所以我没有看到发布的任何一点我的代码。
我无法将一些字符串附加到我的URL,因为我需要发送的数据是JSON数据。如果我听起来像菜鸟,我很抱歉,但我对Obj-C和服务器通信的经验很少。
答案 0 :(得分:4)
您应该将它们作为参数发送到帖子NSUrlRequest
如下:
NSURL *aUrl = [NSURL URLWithString:@"http://dev.mycompany.com"];
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:aUrl
cachePolicy:NSURLRequestUseProtocolCachePolicy
timeoutInterval:60.0];
[request setHTTPMethod:@"POST"];
NSString *postString = @"yourVarialbes=yourvalues";
[request setHTTPBody:[postString dataUsingEncoding:NSUTF8StringEncoding]];
NSURLConnection *connection= [[NSURLConnection alloc] initWithRequest:request
delegate:self];
[connection start];
用于发送JSON Pelase读了 How to send json data in the Http request using NSURLRequest