【发布时间】:2013-03-21 09:07:24
【问题描述】:
我正在使用-[NSURLConnection initWithRequest...] 连接到服务器,
当服务器端失败时,它会以错误 400 响应,并在正文中显示一条消息。
在没有错误的情况下,我可以在 didReceiveData 中获取响应数据。但是当服务器返回错误 400 时,我在 didReceiveData 中没有收到任何错误消息。
但是,如果我使用 -[NSURLConnection sendSynchronousRequest...] 来执行相同的请求
我确实从sendSynchronousRequest 的返回值中得到了错误数据。
我想从 didReceiveData 中获取错误消息,但我不知道为什么我无法得到它。 do之间有什么不同,有人可以帮助我吗?
这样我可以得到错误信息:
NSURL *url = [NSURL URLWithString:@"http://devapi.xxx.com/v1/debug/error"];
NSMutableURLRequest *request = [[[NSMutableURLRequest alloc] initWithURL:url
cachePolicy:NSURLRequestUseProtocolCachePolicy
timeoutInterval:240] autorelease];
[request setHTTPMethod:@"POST"];
[request setValue:@"application/json" forHTTPHeaderField:@"Accept"];
[request setValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
NSURLResponse *response = nil;
NSError *error = nil;
NSData *data = [NSURLConnection sendSynchronousRequest:request
returningResponse:&response
error:&error];
NSLog(@"STATUS:%d", [((NSHTTPURLResponse *)response) statusCode]);
NSLog(@"ERROR:%@", error);
这样我就拿不到了:
NSMutableURLRequest *request = [[[NSMutableURLRequest alloc] initWithURL:[NSURL URLWithString:@"http://devapi.xxx.com/v1/debug/error"]
cachePolicy:NSURLRequestUseProtocolCachePolicy
timeoutInterval:240] autorelease];
[request setHTTPMethod:@"POST"];
[request setValue:@"application/json" forHTTPHeaderField:@"Accept"];
[request setValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
urlConnection=[[NSURLConnection alloc] initWithRequest:request delegate:self startImmediately:YES];
- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response {
NSLog(@"statusCode:%d",((NSHTTPURLResponse *)response).statusCode);
}
- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error {
}
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data {
[receivedData appendData:data];
NSLog(@"DATA:%@",[NSString stringWithCString:[receivedData bytes] encoding:NSASCIIStringEncoding]);
}
【问题讨论】:
-
成功(非400)响应是否调用
didReceiveData?didFailWithError有人打电话吗? -
您能否显示您的状态、数据和错误的日志输出?
-
他的问题是,当HTTP代码不是200时,他不能总是从服务器读取响应的“内容”部分。这是一个问题,因为它是写哪一种应用程序错误的地方。
标签: objective-c nsurlconnection nsurlrequest