在Objective-C iPad开发中发布

在Objective-C iPad开发中发布,第1张

概述我正在尝试发出POST请求,而我似乎无法弄清楚出了什么问题.我收到了来自服务器的回复,但我的电子邮件/密码对似乎没有正确发送/读取(由服务器),它告诉我没有这样的帐户存在. 这是我的代码包含在一个函数中(当用户按下我创建的“登录”按钮时调用它).注意:变量’email’和’password’设置为我也创建的2个文本字段中的值. NSURL *url = [NSURL URLWithString:@ 我正在尝试发出POST请求,而我似乎无法弄清楚出了什么问题.我收到了来自服务器的回复,但我的电子邮件/密码对似乎没有正确发送/读取(由服务器),它告诉我没有这样的帐户存在.

这是我的代码包含在一个函数中(当用户按下我创建的“登录”按钮时调用它).注意:变量’email’和’password’设置为我也创建的2个文本字段中的值.

NSURL *url = [NSURL URLWithString:@"http://mydomain.com/login-ipad/"];NSMutableURLRequest *theRequest = [NSMutableURLRequest requestWithURL:url];Nsstring *messageBody = [Nsstring stringWithFormat:@"email=%@&user_pass=%@",email,password];Nsstring *msgLength = [Nsstring stringWithFormat:@"%d",[messageBody length]];[theRequest addValue: @"text/xml; charset=utf-8" forhttpheaderFIEld:@"Content-Type"];[theRequest sethttpMethod:@"POST"];[theRequest addValue: msgLength forhttpheaderFIEld:@"Content-Length"];[theRequest setValue:@"application/x-www-form-urlencoded" forhttpheaderFIEld:@"Current-Type"];[theRequest sethttpBody:[messageBody dataUsingEnCoding:NSUTF8StringEnCoding]];NSURLConnection *theConnection = [[NSURLConnection alloc] initWithRequest:theRequest delegate:self];if(theConnection){    NSLog(@"Connection Successful");    parent.loginbutton.enabled = NO;    receivedData = [[NSMutableData data] retain];}else{    UIAlertVIEw *alert1 = [[[UIAlertVIEw alloc] initWithTitle:@"Alert" message:@"There was an issue sending the data. Please check your internet connection." delegate:self cancelbuttonTitle:@"OK" otherbuttonTitles:nil] autorelease];    [alert1 show];}

任何人都可以看到我的逻辑有什么问题?

解决方法 您正在添加Current-Type标头(AFAIK甚至不是有效标头)而不是Content-Type. 总结

以上是内存溢出为你收集整理的在Objective-C iPad开发发布全部内容,希望文章能够帮你解决在Objective-C iPad开发中发布所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1084937.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-27
下一篇 2022-05-27

发表评论

登录后才能评论

评论列表(0条)

保存