调用未知方法:yii2mod\cms\controllers\CmsController::setInstance()
Calling unknown method: yii2mod\cms\controllers\CmsController::setInstance()
我不明白为什么会出现这个错误。
调用 cms 时出错
http://localhost/yii-cms/web/cms
调用未知方法:yii2mod\cms\controllers\CmsController::setInstance()
我正在尝试使用 yii2-cms
cms控制器
<?php
namespace yii2mod\cms\controllers;
use Yii;
use yii2mod\cms\models\CmsModel;
use yii\web\Controller;
use yii\web\NotFoundHttpException;
use yii\filters\VerbFilter;
use yii2mod\cms\models\search\CmsModelSearch;
use yii2mod\editable\EditableAction;
use yii2mod\toggle\actions\ToggleAction;
/**
* Class CmsController
* @package yii2mod\cms\controllers
*/
class CmsController extends Controller
{
/**
* @var string view path
*/
public $viewPath = '@vendor/yii2mod/yii2-cms/views/cms/';
/**
* @inheritdoc
*/
public function behaviors()
{
return [
'verbs' => [
'class' => VerbFilter::className(),
'actions' => [
'index' => ['get'],
'create' => ['get', 'post'],
'update' => ['get', 'post'],
'delete' => ['post']
],
]
];
}
/**
* @inheritdoc
*/
public function actions()
{
return [
'edit-page' => [
'class' => EditableAction::className(),
'modelClass' => CmsModel::className(),
'forceCreate' => false
],
'toggle' => [
'class' => ToggleAction::className(),
'modelClass' => CmsModel::className(),
]
];
}
/**
* Lists all CmsModel models.
* @return mixed
*/
public function actionIndex()
{
$searchModel = new CmsModelSearch();
$dataProvider = $searchModel->search(Yii::$app->request->queryParams);
return $this->render($this->viewPath . 'index', [
'dataProvider' => $dataProvider,
'searchModel' => $searchModel
]);
}
/**
* Creates a new CmsModel model.
* If creation is successful, the browser will be redirected to the 'view' page.
* @return mixed
*/
public function actionCreate()
{
$model = new CmsModel();
if ($model->load(Yii::$app->request->post()) && $model->save()) {
Yii::$app->session->setFlash('success', Yii::t('yii2mod.cms', 'Page has been created.'));
return $this->redirect(['index']);
}
return $this->render($this->viewPath . 'create', [
'model' => $model,
]);
}
/**
* Updates an existing CmsModel model.
* If update is successful, the browser will be redirected to the 'view' page.
*
* @param integer $id
*
* @return mixed
*/
public function actionUpdate($id)
{
$model = $this->findModel($id);
if ($model->load(Yii::$app->request->post()) && $model->save()) {
Yii::$app->session->setFlash('success', Yii::t('yii2mod.cms', 'Page has been updated.'));
return $this->redirect(['index']);
}
return $this->render($this->viewPath . 'update', [
'model' => $model,
]);
}
/**
* Deletes an existing CmsModel model.
* If deletion is successful, the browser will be redirected to the 'index' page.
*
* @param integer $id
*
* @return mixed
*/
public function actionDelete($id)
{
$this->findModel($id)->delete();
Yii::$app->session->setFlash('success', Yii::t('yii2mod.cms', 'Page has been deleted.'));
return $this->redirect(['index']);
}
/**
* Finds the CmsModel model based on its primary key value.
* If the model is not found, a 404 HTTP exception will be thrown.
*
* @param integer $id
*
* @return CmsModel the loaded model
* @throws NotFoundHttpException if the model cannot be found
*/
protected function findModel($id)
{
if (($model = CmsModel::findOne($id)) !== null) {
return $model;
} else {
throw new NotFoundHttpException(Yii::t('yii2mod.cms', 'The requested page does not exist.'));
}
}
}
是的,错误已通过正确的配置步骤解决。
由于未配置第二步而发生错误
2) 通过以下代码将新规则 class 添加到应用程序配置中的 urlManager 数组:
'components' => [
'urlManager' => [
'rules' => [
['class' => 'yii2mod\cms\components\PageUrlRule'],
]
],
],
您需要完成的完整配置:
1) 要使用此扩展,您首先需要配置评论扩展,然后您必须在您的应用程序中配置主配置:
'modules' => [
'admin' => [
'controllerMap' => [
'cms' => 'yii2mod\cms\controllers\CmsController'
// You can set your template files
// 'layout' => '@app/modules/backend/views/layouts/main',
// 'viewPath' => '@app/modules/backend/views/cms/',
],
],
],
然后您可以通过以下URL访问管理部分:
http://localhost/path/to/index.php?r=admin/cms/index
2) 通过以下代码将新规则 class 添加到应用程序配置中的 urlManager 数组:
'components' => [
'urlManager' => [
'rules' => [
['class' => 'yii2mod\cms\components\PageUrlRule'],
]
],
],
3) 添加到 SiteController(或通过 urlManager 中的 $route 参数配置):
/**
* @return array
*/
public function actions()
{
return [
'page' => [
'class' => 'yii2mod\cms\actions\PageAction',
// You can set your template files
'view' => '@app/views/site/page'
],
];
}
现在您可以通过管理面板创建自己的页面,并通过每个页面的 url 访问它们。
您似乎在您的站点组件中按原样使用 cms 扩展。
在您的 web.php
文件中,添加:
'components' => [
...
'i18n' => [
'translations' => [
'*' => [
'class' => 'yii\i18n\PhpMessageSource',
'basePath' => '@app/messages'
'sourceLanguage' => 'en',
],
],
],
]
...,
'controllerMap': => [
'cms' => 'yii2mod\cms\controllers\CmsController'
],
注意:您应该排除将其配置为管理模块中的组件的路径,因为无论如何您都不会使用它。
如果您在模块中使用它,那么 README 中记录的步骤就适合您。
我有关注 yii2-cms,效果很好
set instance 错误发生是因为他们找不到给定的 class 并且这可能是由于配置错误造成的。
遵循配置Link https://github.com/yii2mod/yii2-cms#configuration
1) 要使用此扩展,您首先需要配置评论扩展,然后您必须在您的应用程序中配置主配置:
'modules' => [
'admin' => [
'controllerMap' => [
'cms' => 'yii2mod\cms\controllers\CmsController'
// You can set your template files
// 'layout' => '@app/modules/backend/views/layouts/main',
// 'viewPath' => '@app/modules/backend/views/cms/',
],
],
],
You can then access to management section through the following URL:
http://localhost/path/to/index.php?r=admin/cms/index
2) 通过以下代码将新规则 class 添加到应用程序配置中的 urlManager 数组:
'components' => [
'urlManager' => [
'rules' => [
['class' => 'yii2mod\cms\components\PageUrlRule'],
]
],
],
3) 添加到 SiteController(或通过 urlManager 中的 $route 参数配置):
/**
* @return array
*/
public function actions()
{
return [
'page' => [
'class' => 'yii2mod\cms\actions\PageAction',
// You can set your template files
'view' => '@app/views/site/page'
],
];
}
And now you can create your own pages via the admin panel, and access them via the url of each page.
我不明白为什么会出现这个错误。
调用 cms 时出错
http://localhost/yii-cms/web/cms
调用未知方法:yii2mod\cms\controllers\CmsController::setInstance()
我正在尝试使用 yii2-cms
cms控制器
<?php
namespace yii2mod\cms\controllers;
use Yii;
use yii2mod\cms\models\CmsModel;
use yii\web\Controller;
use yii\web\NotFoundHttpException;
use yii\filters\VerbFilter;
use yii2mod\cms\models\search\CmsModelSearch;
use yii2mod\editable\EditableAction;
use yii2mod\toggle\actions\ToggleAction;
/**
* Class CmsController
* @package yii2mod\cms\controllers
*/
class CmsController extends Controller
{
/**
* @var string view path
*/
public $viewPath = '@vendor/yii2mod/yii2-cms/views/cms/';
/**
* @inheritdoc
*/
public function behaviors()
{
return [
'verbs' => [
'class' => VerbFilter::className(),
'actions' => [
'index' => ['get'],
'create' => ['get', 'post'],
'update' => ['get', 'post'],
'delete' => ['post']
],
]
];
}
/**
* @inheritdoc
*/
public function actions()
{
return [
'edit-page' => [
'class' => EditableAction::className(),
'modelClass' => CmsModel::className(),
'forceCreate' => false
],
'toggle' => [
'class' => ToggleAction::className(),
'modelClass' => CmsModel::className(),
]
];
}
/**
* Lists all CmsModel models.
* @return mixed
*/
public function actionIndex()
{
$searchModel = new CmsModelSearch();
$dataProvider = $searchModel->search(Yii::$app->request->queryParams);
return $this->render($this->viewPath . 'index', [
'dataProvider' => $dataProvider,
'searchModel' => $searchModel
]);
}
/**
* Creates a new CmsModel model.
* If creation is successful, the browser will be redirected to the 'view' page.
* @return mixed
*/
public function actionCreate()
{
$model = new CmsModel();
if ($model->load(Yii::$app->request->post()) && $model->save()) {
Yii::$app->session->setFlash('success', Yii::t('yii2mod.cms', 'Page has been created.'));
return $this->redirect(['index']);
}
return $this->render($this->viewPath . 'create', [
'model' => $model,
]);
}
/**
* Updates an existing CmsModel model.
* If update is successful, the browser will be redirected to the 'view' page.
*
* @param integer $id
*
* @return mixed
*/
public function actionUpdate($id)
{
$model = $this->findModel($id);
if ($model->load(Yii::$app->request->post()) && $model->save()) {
Yii::$app->session->setFlash('success', Yii::t('yii2mod.cms', 'Page has been updated.'));
return $this->redirect(['index']);
}
return $this->render($this->viewPath . 'update', [
'model' => $model,
]);
}
/**
* Deletes an existing CmsModel model.
* If deletion is successful, the browser will be redirected to the 'index' page.
*
* @param integer $id
*
* @return mixed
*/
public function actionDelete($id)
{
$this->findModel($id)->delete();
Yii::$app->session->setFlash('success', Yii::t('yii2mod.cms', 'Page has been deleted.'));
return $this->redirect(['index']);
}
/**
* Finds the CmsModel model based on its primary key value.
* If the model is not found, a 404 HTTP exception will be thrown.
*
* @param integer $id
*
* @return CmsModel the loaded model
* @throws NotFoundHttpException if the model cannot be found
*/
protected function findModel($id)
{
if (($model = CmsModel::findOne($id)) !== null) {
return $model;
} else {
throw new NotFoundHttpException(Yii::t('yii2mod.cms', 'The requested page does not exist.'));
}
}
}
是的,错误已通过正确的配置步骤解决。
由于未配置第二步而发生错误
2) 通过以下代码将新规则 class 添加到应用程序配置中的 urlManager 数组:
'components' => [
'urlManager' => [
'rules' => [
['class' => 'yii2mod\cms\components\PageUrlRule'],
]
],
],
您需要完成的完整配置:
1) 要使用此扩展,您首先需要配置评论扩展,然后您必须在您的应用程序中配置主配置:
'modules' => [
'admin' => [
'controllerMap' => [
'cms' => 'yii2mod\cms\controllers\CmsController'
// You can set your template files
// 'layout' => '@app/modules/backend/views/layouts/main',
// 'viewPath' => '@app/modules/backend/views/cms/',
],
],
],
然后您可以通过以下URL访问管理部分:
http://localhost/path/to/index.php?r=admin/cms/index 2) 通过以下代码将新规则 class 添加到应用程序配置中的 urlManager 数组:
'components' => [
'urlManager' => [
'rules' => [
['class' => 'yii2mod\cms\components\PageUrlRule'],
]
],
],
3) 添加到 SiteController(或通过 urlManager 中的 $route 参数配置):
/**
* @return array
*/
public function actions()
{
return [
'page' => [
'class' => 'yii2mod\cms\actions\PageAction',
// You can set your template files
'view' => '@app/views/site/page'
],
];
}
现在您可以通过管理面板创建自己的页面,并通过每个页面的 url 访问它们。
您似乎在您的站点组件中按原样使用 cms 扩展。
在您的 web.php
文件中,添加:
'components' => [
...
'i18n' => [
'translations' => [
'*' => [
'class' => 'yii\i18n\PhpMessageSource',
'basePath' => '@app/messages'
'sourceLanguage' => 'en',
],
],
],
]
...,
'controllerMap': => [
'cms' => 'yii2mod\cms\controllers\CmsController'
],
注意:您应该排除将其配置为管理模块中的组件的路径,因为无论如何您都不会使用它。
如果您在模块中使用它,那么 README 中记录的步骤就适合您。
我有关注 yii2-cms,效果很好
set instance 错误发生是因为他们找不到给定的 class 并且这可能是由于配置错误造成的。
遵循配置Link https://github.com/yii2mod/yii2-cms#configuration
1) 要使用此扩展,您首先需要配置评论扩展,然后您必须在您的应用程序中配置主配置:
'modules' => [
'admin' => [
'controllerMap' => [
'cms' => 'yii2mod\cms\controllers\CmsController'
// You can set your template files
// 'layout' => '@app/modules/backend/views/layouts/main',
// 'viewPath' => '@app/modules/backend/views/cms/',
],
],
],
You can then access to management section through the following URL:
http://localhost/path/to/index.php?r=admin/cms/index
2) 通过以下代码将新规则 class 添加到应用程序配置中的 urlManager 数组:
'components' => [
'urlManager' => [
'rules' => [
['class' => 'yii2mod\cms\components\PageUrlRule'],
]
],
],
3) 添加到 SiteController(或通过 urlManager 中的 $route 参数配置):
/**
* @return array
*/
public function actions()
{
return [
'page' => [
'class' => 'yii2mod\cms\actions\PageAction',
// You can set your template files
'view' => '@app/views/site/page'
],
];
}
And now you can create your own pages via the admin panel, and access them via the url of each page.