我有一些看起来应该可以工作的代码,它尝试发送异步请求,但从未生成请求:
这是功能:
-(void) setEmail: (NSString *) subject andBody: (NSString *) body
{
NSString *urlString = @"http://www.my_url.com?";
// Create encoded query string
NSString *query_string = @"subject=%@&body=%@";
NSString *query_with_args = [NSString stringWithFormat:query_string , subject , body];
// Now encode the query
// NSString *encodedQuery = (__bridge NSString *)CFURLCreateStringByAddingPercentEscapes(NULL,
// (__bridge CFStringRef)query_with_args,
// NULL,
// (CFStringRef)@"!*'();:@&=+$,/?%#[]",
// kCFStringEncodingUTF8);
//
// Now concatinate url and query
NSString *final_url = [urlString stringByAppendingString:query_with_args];
NSURL *url = [NSURL URLWithString:final_url];
// Now send to the server
NSURLRequest *urlRequest = [NSURLRequest requestWithURL:url];
// TODO: ok I dont really understand what this is
NSOperationQueue *queue = [[NSOperationQueue alloc] init];
NSLog(@"......before request");
[NSURLConnection sendAsynchronousRequest:urlRequest queue:queue completionHandler:^(NSURLResponse *response, NSData *data, NSError *error)
{
NSLog(@"On return");
NSLog(@"This is data: %@" , data);
NSLog(@"This is response: %@" , response);
NSLog(@"This is error: %@" , error);
NSLog(@"OK");
}];
}
知道这里可能出了什么问题以及为什么永远不会发送请求吗?记录器与
NSLog(@"......请求前"); 确实被打印了。