我正在尝试向链接发出HTTP请求;响应是JSON。
我无法正确得到答案。我是Swift的新手,我不知道问题是什么......
我想要覆盖的网址是 http://url/test.r&pcTest=pTest
我已经在目标C中完成了这个:
NSString *serviceURL = [NSString stringWithFormat:@"http://url/test.r&pcTest=pTest"];
NSURL *URL = [NSURL URLWithString:[serviceURL stringByAddingPercentEscapesUsingEncoding:NSASCIIStringEncoding]];
NSData *data = [NSData dataWithContentsOfURL:URL];
if (!data) {
NSLog(@"null");
}
NSString *response = [[NSString alloc] initWithData:data encoding:NSASCIIStringEncoding] ;
if (![response isEqualToString:@"UNAUTHORIZED"]) {
response = [response stringByReplacingOccurrencesOfString:@"&" withString:@"&"];
data = [response dataUsingEncoding:NSASCIIStringEncoding];
NSLog(@"%@",response);
} else {
//return nil;
NSLog(@"dsfg");
}
我得到了正确答案。在Swift中,我的代码是:
let parameters = ["pcTest": "pTest"]
let urlPath :String = "http://url/test.r"
Alamofire.request(.POST, urlPath, parameters: parameters)
.response { request, response, data, error in
println(request)
println(response)
println(error)
println(data)
}
回复是
{URL:http://url/test.r}
可选({URL:http://url/test.r} {状态代码:200,headers { 连接=“保持活力”; “Content-Type”=“text / javascript; charset = iso-8859-1”; 日期=“2015年9月11日星期五22:34:12 GMT”; “Keep-Alive”=“timeout = 5,max = 400”; Server =“Apache / 1.3.41(Unix)mod_ssl / 2.8.31 OpenSSL / 0.9.8c”; “转移编码”=身份; }})
零
可选(< 7b227474 41706172 7461646f 223a5b7b 22416e6f 223a2232 30313422 2c224376 655f4170 6172745f 4576616c 7561223a 22303122 2c224465 73637269 7063696f 6e223a22 43616c69 64616420 656e2065 6c204465 73656d70 65f16f20 446f6365 6e746522 7d2c7b22 416e6f22 3a223230 3134222c 22437665 5f417061 72745f45 76616c75 61223a22 3032222c 22446573 63726970 63696f6e 223a2244 65646963 616369f3 6e206120 6c617320 41637469 76696461 64657320 64652044 6f63656e 63696122 7d2c7b22 416e6f22 3a223230 3134222c 22437665 5f417061 72745f45 76616c75 61223a22 3033222c 22446573 63726970 63696f6e 223a2250 65726d61 6e656e63 69612065 6e206c61 73204163 74697669 64616465 73206465 20446f63 656e6369 61227d5d 2c227474 53656363 696f6e22 3a5b7b22 416e6f22 3a223230 3134222c 22437665 5f417061 72745f45 76616c75 61223a22 3031222c 22437665 5f536563 635f4576 616c7561 223a2230 31222c22
回应应该是:
{“Bank”:[{“Year”:“2014”,“Clv”:“01”,“Desc”:“1345”},{“Year”:“2014”,“Clv。 ..等等
答案 0 :(得分:2)
如果您想要JSON解析,则需要致电responseJSON
,而不是response
:
let parameters = ["pcTest": "pTest"]
Alamofire.request(.GET, "http://url/test.r", parameters: parameters)
.responseJSON { _, _, result in
print(result)
debugPrint(result)
}