【发布时间】:2013-05-02 05:32:44
【问题描述】:
使用 EasyTabs 扩展中的控制器操作调用视图文件时,我收到类似 Fatal error: Using $this when not in object context in ..\controllers\ServiceRequestController.php on line 661 的错误。
我在视图文件中调用这样的控制器操作ServiceRequestController::actionTest();
和控制器
public static function actionTest()
{
$this->redirect('test');
}
我怎样才能摆脱这个错误?当我用谷歌搜索时,我发现 $this cannot be used in a static method. 。所以我尝试在我的视图文件中使用$model = new ServiceRequest();
$model->Test();。但它显示错误为ServiceRequest and its behaviors do not have a method or closure named "actionTest".
谁能帮我修复错误?提前致谢
我尝试使用此链接进行修复。但我认为我错了。 PHP Fatal error: Using $this when not in object context
【问题讨论】:
标签: php yii yii-extensions yii-components yii-events