如何获取 NSURLResponse

发布于 2024-11-05 12:38:38 字数 482 浏览 3 评论 0原文

我使用以下命令向 Web 服务器发出 http 请求:

NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL: [NSURL URLWithString: @"http://server.com"]]; 
[request setHTTPMethod: @"POST"];
[request setHTTPBody: myRequestData];
[request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"content-type"];
NSData *returnData = [NSURLConnection sendSynchronousRequest: request returningResponse: nil error: nil];

但是如何从服务器获取响应并解析它呢?多谢 :)

I make http request to the web server with this:

NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL: [NSURL URLWithString: @"http://server.com"]]; 
[request setHTTPMethod: @"POST"];
[request setHTTPBody: myRequestData];
[request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"content-type"];
NSData *returnData = [NSURLConnection sendSynchronousRequest: request returningResponse: nil error: nil];

But how can I get the response from the server and parse it? Thanks a lot :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

仙女 2024-11-12 12:38:38

由于您将响应分配给 returnData 实例变量,因此将其转换为字符串,以便初学者只需看看您得到的结果,解析可以使用 NSXMLParser 或某些 JSON 库完成,具体取决于关于响应格式。

以下是将响应转换为字符串的方法:

NSString *responseBody = [[NSString alloc] initWithData:returnData encoding:NSUTF8StringEncoding];

Since you're assigning response to returnData instance variable, convert it to string for starters just look what you get, the parsing may be done with either NSXMLParser or some JSON library depending on response format.

Here's how you'd convert the response to string:

NSString *responseBody = [[NSString alloc] initWithData:returnData encoding:NSUTF8StringEncoding];
墨落画卷 2024-11-12 12:38:38

我假设您指的是完整的 NSURLResponse ,以便您可以检查标头等。在这种情况下,您需要传入returningResponse参数,它是一个类型为(NSURLResponse **)的输出参数。请参阅文档

I assume you mean the full NSURLResponse so that you can inspect headers and the like. In which case you need to pass in the returningResponse parameter, it is an out parameter of type (NSURLResponse **). See the docs.

久光 2024-11-12 12:38:38

returnData 是您的响应。如果它是xml那么你可以使用NSXMLParser来解析它,如果它的json使用JSONFramework。

returnData is your response. If its xml then you can use NSXMLParser to parse it, if its json use the JSONFramework.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文