我需要一些教程,如何使用来 self 的 iOS 应用程序的 HTTP POST(或 GET)请求。我想将一个字符串发送到我的服务器,然后将其写入数据库。我找到了这段代码:
NSString *post = @"key1=val1";
NSData *postData = [post dataUsingEncoding:NSASCIIStringEncoding allowLossyConversion:YES];
NSString *postLength = [NSString stringWithFormat"%d", [postData length]];
NSMutableURLRequest *request = [[[NSMutableURLRequest alloc] init] autorelease];
[request setURL:[NSURL URLWithString"http://www.nowhere.com/sendFormHere.php"]];
[request setHTTPMethod"OST"];
[request setValue:postLength forHTTPHeaderField"Content-Length"];
[request setValue"application/x-www-form-urlencoded" forHTTPHeaderField"Content-Type"];
[request setHTTPBody:postData];
我将它添加到 UIAction 按钮,但它不会向我的服务器发送任何内容。在我的服务器上,我有一个 PHP 脚本,它从 post 中获取“key1”,然后将其写入 db。
<?
$postr = $_POST["key1"];
$con0 = mysql_connect("server","db","pass");
mysql_select_db("table", $con0);
mysql_set_charset('utf8',$con0);
mysql_query("INSERT INTO tok (token) VALUES ('$postr')");
mysql_close();
?>
谁能告诉我我做错了什么?
查看 AFnetworking 并通过他们的 api 工作。使用 api 发送 post 请求非常快,并且是大多数应用程序用于网络连接的方式。
也请不要被讽刺的评论气馁。您应该将 iOS 项目标记为 iOS 而不是 xcode(除非您确实需要实际程序 xcode 的帮助)。但我不认为骚扰每个进来并犯此错误的人是有成效的。一种更委婉的方式是个人信息,而不是公开反驳
https://github.com/AFNetworking/AFNetworking
关于iOS 应用 http post/get 请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16199238/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |