是否可以通過重定向傳遞參數?我嘗試了很多選擇,但似乎沒有任何工作。我的最新做法是:通過重定向傳遞參數
return $this->redirect(array('Users::helloworld', 'args' => array('id' => 'myId')));
然後我創建了一個路線:
Router::connect('/Users/helloworld?id={:id}', array('controller' => 'Users', 'action' => 'helloworld'));
,但我得到的是users/helloworld/myId