- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
{
NSLog(@"%@----%@-----%@---%@",connection.currentRequest.URL,connection.currentRequest.HTTPBody,connection.currentRequest.HTTPMethod,connection.currentRequest.allHTTPHeaderFields);
}
输出结果如下
http://这里是网址/zines----(null)-----GET---
{
Accept = "application/json";
"Content-Length" = 0;
"Content-Type" = "application/json";
}
为什么用 xcode 就可以得到数据,放到浏览器里就是"Internal Server Error"浏览器输入的地址如下:http://这里是网址/zines
小白一枚,求大神告知,万分感谢!!!
모든 메시지에 포함되는 헤더입니다. Content-length = 0은 데이터가 없음을 의미합니다. 요청이 성공적으로 이루어졌나요?