2

我有一个特定的 URL “http://dev.mycompany.com”,我需要向它发送一些数据(以 JSON 格式)并获得响应。

我无法通过 SO 上的大量文档和相关问题找到自己的方式。我已经设法使用 NSURLConnection 获取数据(不发送任何数据)并且效果很好,到目前为止我的代码与https://developer.apple.com/library/mac/#documentation/上的代码几乎相同Cocoa/Conceptual/URLLoadingSystem/Tasks/UsingNSURLConnection.html,所以我看不到发布我拥有的代码的任何意义。

我无法将一些字符串附加到我的 URL,因为我需要发送的数据是 JSON 数据。如果我听起来像个菜鸟,我很抱歉,但我在 Obj-C 和服务器通信方面的经验很少。

4

1 回答 1

4

You should send them as parameter to a post NSUrlRequest

As following:

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

For sending JSON Pelase read How to send json data in the Http request using NSURLRequest

于 2012-06-02T17:41:16.983 回答