假设我有一个网址:www.example.com/setting/?title=1&test=2
然后我有一个Some_Controller
扩展类Zend_Controller_Action
:
class Test_Controller_Action extends Zend_Controller_Action {
非常奇怪的是,当我尝试获取GET
表单数据时,zend 的请求说根本没有GET
数据,尽管如果我尝试提交POST
数据,一切似乎都很好。
print_r($this->_request->getParams());
或者
print_r($this->_request);
我根本无法GET
数据的原因可能是什么?