当我在动作中使用重定向时,afteraction方法(在controller.PHP中)不起作用!!
我该如何解决这个问题?
注意:我不能使用beforeAction,因为我在我的动作中生成一个变量,我在afteraction中使用它
提前致谢 …
public function actionHsh()
{
$this->hesam= 502;
$this->redirect(array('charge/printMyCharge'));
}
并在CController
protected function afteraction($action)
{
$number = $this->hesam= 502;
}
解决方法: