使用Zend Framework 1.7。是否可以使用POST
方法转发请求?
像这样:
$this->_forward('action','controller','module',array('method'=>'POST'));
答案 0 :(得分:1)
是的,这是可能的,请尝试使用以下内容:
$this->_request->setPost(array('param_name' => $paramValue));
$this->_forward('actionName', 'controller', 'module');