我是Yii2的初学者,当我通过Xampp运行我的网站时,我没有任何错误,但在我将其上传到Linux服务器后,我收到了这个错误:
非静态方法前端\ controllers \ SiteController :: actionCategories()不应该静态调用,假设$ this来自不兼容的上下文
造成这种情况的原因是什么?
<?php
$category_post = \frontend\controllers\SiteController::actionCategories($row['id']);
echo ListView::widget([
'dataProvider' => $category_post,
'itemView' => 'news_title',
'summary' => '',
'pager' => [
'options' => ['class' => 'row pagination '],
]
]);
?>
答案 0 :(得分:1)
只需使用
Yii::$app->controller->actionCategories($row['id']);
而不是
\frontend\controllers\SiteController::actionCategories($row['id']);