是否可以使用 Yii 框架在另一个控制器类中实例化控制器类
例如,我有控制器 Student 和班级学生的方法 actionShow 我有以下内容
public function actionShow()
{
$student = $this->loadStudent();
$studentContact = new Student_ContactController;
//Checking if there was an ajax request
if(Yii::app()->request->isAjaxRequest){
$this->renderPartial('show',array(
'student'=>$student,
));
}else{
$this->render('show',array(
'student'=>$student,
));
}
}
是否可以在 $studentContact = new Student_ContactController; 方法中包含此操作?
出现错误,:-(