我在视图中有一个表格:
echo $this->Form->create('Customers', array('action' => 'index'));
echo $this->Form->input('category_id');
echo $this->Form->end('Search');
以及Controller中的一个方法:
function index() {
debug($this->passedArgs);
}
但是调试消息打印出一个空数组。
当我手动输入网址时:
http://domainna.me/admin/customers/index/category_id:4
调试消息打印出来: Array ( [season_id] => 16 )
一切都按照我的意愿行事。我错过了什么?
- - -编辑 - - -
debug($this->request->params) 打印:
Array
(
[plugin] =>
[controller] => customers
[action] => index
[named] => Array
(
)
[pass] => Array
(
)
[isAjax] =>
)