2

我试图制作一个登录页面以使用户对网站进行身份验证。我试过类似的东西:

    NSURL *myURL = [NSURL URLWithString:@"https://www.freelancer.com/users/onlogin.php"];
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:myURL
                                                       cachePolicy:NSURLRequestReloadIgnoringLocalCacheData
                                            timeoutInterval:60];    
NSLog(@"ispost");
[request setHTTPMethod:@"POST"];
[request setValue:usernameField.text forKey:@"username"];
[request setValue:passwordField.text forKey:@"passwd"];


NSURLConnection *theConnection = [[NSURLConnection alloc] initWithRequest:request delegate:self];

if (!theConnection) {
    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Network Error" message:@"Could not login!" delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
    [alert show];
    [alert release];
    return;
}

我得到一个错误如下:

2012-07-07 10:09:37.354 Auth[6062:f803] ispost 2012-07-07 10:09:37.357 Auth[6062:f803] *** Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<NSMutableURLRequest 0x68d69d0> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key username.'

谁能建议我做错了什么?

谢谢你的帮助

4

3 回答 3

4

你为什么不使用like

[request setValue:usernameField.text forHTTPHeaderField:@"username"];
[request setValue:passwordField.text forHTTPHeaderField:@"passwd"];

希望这对您有所帮助。

于 2012-07-07T03:44:24.807 回答
1

NSMutableURLRequest 没有用户名属性(因此出现错误)。您需要执行以下操作(尽管这取决于您的服务器期望的格式):

[request setHTTPMethod:@"POST"];
NSString* str = [NSString stringWithFormat:@"username=%@&passwd=%@", usernameField.text, passwordField.text];
[request setHTTPBody:[str dataUsingEncoding:NSUTF8StringEncoding]];

希望有帮助。

于 2012-07-07T03:25:42.663 回答
0

提示在您的错误字符串中:

此类与键用户名的键值编码不兼容。

我很确定您不能以您尝试的方式进行基本身份验证。快速搜索一下我确实记得在尝试通过每个请求传递它时都必须执行 base64(替代方法是实现连接委托方法,并正确处理 auth.xml 请求)。

于 2012-07-07T03:25:27.810 回答