iPhone 开发问题:NSMutableURLRequest,无法在 php 中将 _GET 设置为我的 from

发布于 2024-08-11 11:59:01 字数 927 浏览 3 评论 0原文

我有一个 php 表单,可以正常工作。通过该表单,我连接到数据库,从中获取数据。 :-) 当我使用 Mac/笔记本电脑上的表格时,我可以输入 sata 并得到结果。

当我尝试连接这里的这段代码时。我可以传递表单并建立与数据库的连接,但我输入国家/地区的查询是空的。所以我假设它没有发送或附加到网址。

可能是什么问题?

这是代码:

// NSString *myRequestString = [[NSString alloc] initWithFormat:@"&country=Germany"];
// NSData *myRequestData = [ NSData dataWithBytes: [ myRequestString UTF8String ] length: [ myRequestString length]];
// NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL: [ NSURL URLWithString: @"THE URL" ]];
// [ request setHTTPMethod: @"GET" ];
// [ request setHTTPBody: myRequestData ];

表格:

<html><body>
<form action="connect.php" method="GET"> 
Country: <input name="country" type="text" /> 
<input type="submit" />
</form>
</body></html>

完成.. 表格有效,但我无法从我的 iPhone 应用程序发送数据:-(

希望你能为我指出正确的方向。

I have a php form, that is working. With that form I connect to a DB, where i get data out. :-)
When I use the form from my Mac/laptop, i can enter the sata and I get the result.

When i try to connect with this code under here. I can pass the form, and establich connection to DB, but my query, where I put country in, is empty. So I assume that is is not sent or attched to the url.

What could be the problem?

This is the code:

// NSString *myRequestString = [[NSString alloc] initWithFormat:@"&country=Germany"];
// NSData *myRequestData = [ NSData dataWithBytes: [ myRequestString UTF8String ] length: [ myRequestString length]];
// NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL: [ NSURL URLWithString: @"THE URL" ]];
// [ request setHTTPMethod: @"GET" ];
// [ request setHTTPBody: myRequestData ];

The form:

<html><body>
<form action="connect.php" method="GET"> 
Country: <input name="country" type="text" /> 
<input type="submit" />
</form>
</body></html>

To finish of.. The form works, but I cannot send data from my iPhone APP :-(

Hope u can point me in the right direction.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

Bonjour°[大白 2024-08-18 11:59:01

尝试将 HTTP 方法设置为 POST 而不是 GET。表单提交使用POST。

在任何 HTTP 调用的调试中,我发现使用 Charles Web 调试代理确实很有帮助,你可以看到与浏览器中的 HTTP 流量完全相同,然后尽可能与您的代码请求复制该请求。

Try setting the HTTP method to be POST instead of GET. Form submits are use POST.

In any debugging of HTTP calls, I find it really helpful to use the Charles Web debugging proxy, you can see exactly what the HTTP traffic looks like from a browser and then duplicate that request as closely as possible with your code request.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文