在进行重定向的控制器操作中,我使用了这个:
$this->redirect(array('controller' => 'tools', 'action' => 'index'));
或这个
$this->redirect('/tools/index');
当我通过重定向传递数据时,我使用这个:
$this->redirect('tools/index/?myArgument=12');
但我找不到如何通过“this-redirect-array”表示法传递“myargument”。
我不想使用它,因为一些路由问题:
$this->redirect(array('controller' => 'tools', 'action' => 'index', "myArgument"));
我需要这样的东西:
$this->redirect(array('controller' => 'tools', 'action' => 'index', "?myArgument=12"));