我正在尝试用Zend Framework编写一个简短的Rest服务。但是文档并不是本部分的最佳文档。
我有一个ApiController扩展Zend_Rest_Controller,包含所有需要的抽象方法。我的目标是获取Post数据并返回一些内容。
我的客户端看起来像这样:
public function indexAction()
{
$url = 'http://localhost/url/public/api';
$client = new Zend_Rest_Client();
$client->setUri($url);
$client->url = 'http://www.google.de';
$result = $client->post();
}
但是提供的“$ client-> url”不在服务器端的post数组中。我是否必须在我的ApiController上的postAction中使用Zend Rest Server?
如果某人有一个例子如何发送和使用Zend Rest获取数据,那就太棒了。
答案 0 :(得分:7)
答案 1 :(得分:0)
您是否尝试将其设置为访问127.0.0.1而不是localhost?我知道这有时会引起问题。