没有来自NSURLConnection的回复

时间:2013-03-08 02:57:02

标签: ios objective-c cocoa-touch cocoa nsurlconnection

我有以下代码,它应该只是加载带有帖子数据的URL,然后从服务器获取HTML响应:

// Send log in request to server
NSString *post = [NSString stringWithFormat:@"username=%@&password=%@", text_field_menu_username.text, text_field_menu_password.text];
NSData *postData = [post dataUsingEncoding:NSUTF8StringEncoding];
NSString *postLength = [NSString stringWithFormat:@"%d", [postData length]];
NSMutableURLRequest *request;
[request setURL:[NSURL URLWithString:@"http://example.com/test.php"]]; // Example Only
[request setHTTPMethod:@"POST"];
[request setValue:postLength forHTTPHeaderField:@"Content-Length"];
[request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"];
[request setHTTPBody:postData];

[NSURLConnection sendAsynchronousRequest:request
                                   queue:[NSOperationQueue mainQueue]
                       completionHandler:^(NSURLResponse *response, NSData *data, NSError *error)
{
    // Handle response
    NSString *response_string = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
    NSLog(@"Data 1: %@", response);
    NSLog(@"Data 2: %@", data);
    NSLog(@"Data 3: %@", error);
    NSLog(@"Data 4: %@", response_string);
}];

以下是每个NSLog的输出:

Data 1: (null)
Data 2: (null)
Data 3: (null)
Data 4: 

知道我做错了吗?

1 个答案:

答案 0 :(得分:2)

在设置参数之前,您尚未初始化request对象。它应该是:

NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init];