当我在 Action 中使用重定向时,afterAction 方法(在 controller.php 中)不起作用!
我该如何解决这个问题?
注意:我不能使用 beforeAction,因为我在我的 action 中生成一个变量,我在 afterAction 中使用它
提前致谢 ...
public function actionHsh()
{
$this->hesam= 502;
$this->redirect(array('charge/printMyCharge'));
}
在 CController 中
protected function afterAction($action)
{
$number = $this->hesam= 502;
}
最佳答案
在重定向之前使用 afteraction
好好享受!
关于php - Yii 中 afterAction 的缺陷,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26908529/