标签: php yii yii-components
让我编写以下动作类:
class TranAction extends CAction{ public function run(){ echo "Hello Yii"; } }
现在我想渲染myView视图,但我不知道如何从render()方法调用控制器的run()方法?
myView
render()
run()
答案 0 :(得分:1)
$this->controller->render('myView');