使用Zend_Rest_Client的Zend_Rest_Controller工作示例?

时间:2009-11-21 08:27:49

标签: php zend-framework rest

我正在尝试用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获取数据,那就太棒了。

2 个答案:

答案 0 :(得分:7)

也许本教程Create RESTful Applications Using The Zend Framework可以提供帮助。

答案 1 :(得分:0)

您是否尝试将其设置为访问127.0.0.1而不是localhost?我知道这有时会引起问题。