我正在尝试用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获取数据,这将是很好的.
也许本教程 使用Zend Framework创建RESTful应用程序可以提供帮助.