您好我正在尝试在Zend应用程序中设置一些REST路由,我想知道如何限制可以访问路由的HTTP方法。
$route = new Zend_Controller_Router_Route('user/reset_password', array(
'module' => 'default',
'controller' => 'user',
'action' => 'resetpassword'
));
$front_controller->getRouter()->addRoute('reset_password', $route);
在此路由中,我想指定此路由将响应的HTTP谓词,如GET,POST,PUT等,例如添加“method”=> “POST”到数组。
谢谢,
答案 0 :(得分:6)
您不能在ZF的当前实现中执行此操作,因为它将路由接口声明为:
interface Zend_Controller_Router_Route_Interface {
public function match($path);
public function assemble($data = array(), $reset = false, $encode = false);
public static function getInstance(Zend_Config $config);
}
正如您所看到的,方法参数没有空间。
但是,您可以在控制器中执行所有检查,也可以编写自己的路由器。