是否可以通过重定向传递参数?我尝试了很多选择,但似乎没有任何效果。我的最新方法是:
return $this->redirect(array('Users::helloworld', 'args' => array('id' => 'myId')));
然后我创建了一条路线:
Router::connect('/Users/helloworld?id={:id}', array('controller' => 'Users', 'action' => 'helloworld'));
但我得到的只是users/helloworld/myId