我创建了一个 Web 服务来在 iOS 应用程序和 Joomla 网站之间进行通信,并且我使用 GET 方法在移动应用程序和 Web 服务之间以及 Web 服务和控制器之间进行通信(PHP 文件确实工作并返回数据),但我没有找到如何将实现转换为 POST 方法这里是实际系统:
ws.php:这是网络服务(简单示例)
<?php
$id = $_GET['id'] ; // get the data from the URL
// here i make testes
// then I redirect to the controller of the Joomla component that receive
// the call of the request the URL is actually the attribute "action" of
// an existing HTML Form that implement the login system, I added a
// parameter called web service to help me to modify the controller
// to make the difference between a normal call and a web service call
header("Location: index.php?option=com_comprofiler&task=login&ws=1&id=1");
?>
Controller.php:网络服务调用和网络调用的接收者(来自浏览器)
<?php
// code added by me, in the existent controller of the component
// it was waiting for a form submitting, so I got to convert my data to POST here
if (isset($_GET['ws'])) // it's a web service call
{
$_POST['id'] = $_GET['id'] ;
// do the task ...
if ($correctLogin) // just an example
echo "1"
else
echo '0';
}
?>
我没有放真正的实现,只是系统的一个简单的例子,但都是一样的
从手机拨打
NSURL *url = [[NSURL alloc]initWithString:@"http://localhost/ws.php?id=1"];
NSData *dataUrl= [NSData dataWithContentsOfURL:url];
NSString *str = [[NSString alloc]initWithData:dataUrl
encoding:NSUTF8StringEncoding];
if(![str isEqualToString:@"0"])
NSLog(@"connected");
else
NSLog(@"not connected");
所以我不想使用 GET 方法,我只想使用 POST 从手机接收我的数据,并使用 POST 将数据发送到控制器,最好的解决方案是什么?