Я использую Yii2 и пытаюсь создать контроллер, который отображает простой вид в подпапке.
Я создал с помощью gii Tool новую модель, основанную на простой таблице mysql.
После этого я создал с помощью функции CRUD новый контроллер
Здесь вы можете увидеть мои введенные данные из gii >> CRUDгенератор:
все выглядит хорошо, но контроллер будет полностью проигнорирован, потому что, когда я добавляю любую синтаксическую ошибку в мой новый код контроллера, яне получаю сообщения об ошибке от Yii2.
И я думаю, что это причина, по которой мои представления не будут отображаться контроллером.
Поэтому мой конкретный вопрос: нужно ли регистрировать новыйконтроллер где-нибудь в Yii2?
Мои представления распределены следующим образом:
app / views / paxarten / index.php или app / views / paxarten / update.php
и моя цель - получить к ним доступ через эту структуру URL
www.myApplication.com / paxarten / index
и моя красивая структура URL уже включена:)
Спасибо за любые подсказки и любую помощь! Контроллер
<?php
namespace app\controllers;
use Yii;
use app\models\PaxArten;
use app\models\PaxArtenSearch;
use yii\web\Controller;
use yii\web\NotFoundHttpException;
use yii\filters\VerbFilter;
/**
* PaxArtenController implements the CRUD actions for PaxArten model.
*/
class PaxArtenController extends Controller
{
/**
* {@inheritdoc}
*/
public function behaviors()
{
return [
'verbs' => [
'class' => VerbFilter::className(),
'actions' => [
'delete' => ['POST'],
],
],
];
}
/**
* Lists all PaxArten models.
* @return mixed
*/
public function actionIndex()
{
$searchModel = new PaxArtenSearch();
$dataProvider = $searchModel->search(Yii::$app->request->queryParams);
return $this->render('index', [
'searchModel' => $searchModel,
'dataProvider' => $dataProvider,
]);
}
/**
* Displays a single PaxArten model.
* @param integer $id
* @return mixed
* @throws NotFoundHttpException if the model cannot be found
*/
public function actionView($id)
{
return $this->render('view', [
'model' => $this->findModel($id),
]);
}
/**
* Creates a new PaxArten model.
* If creation is successful, the browser will be redirected to the 'view' page.
* @return mixed
*/
public function actionCreate()
{
$model = new PaxArten();
if ($model->load(Yii::$app->request->post()) && $model->save()) {
return $this->redirect(['view', 'id' => $model->id]);
}
return $this->render('create', [
'model' => $model,
]);
}
/**
* Updates an existing PaxArten model.
* If update is successful, the browser will be redirected to the 'view' page.
* @param integer $id
* @return mixed
* @throws NotFoundHttpException if the model cannot be found
*/
public function actionUpdate($id)
{
$model = $this->findModel($id);
if ($model->load(Yii::$app->request->post()) && $model->save()) {
return $this->redirect(['view', 'id' => $model->id]);
}
return $this->render('update', [
'model' => $model,
]);
}
/**
* Deletes an existing PaxArten model.
* If deletion is successful, the browser will be redirected to the 'index' page.
* @param integer $id
* @return mixed
* @throws NotFoundHttpException if the model cannot be found
*/
public function actionDelete($id)
{
$this->findModel($id)->delete();
return $this->redirect(['index']);
}
/**
* Finds the PaxArten model based on its primary key value.
* If the model is not found, a 404 HTTP exception will be thrown.
* @param integer $id
* @return PaxArten the loaded model
* @throws NotFoundHttpException if the model cannot be found
*/
protected function findModel($id)
{
if (($model = PaxArten::findOne($id)) !== null) {
return $model;
}
throw new NotFoundHttpException('The requested page does not exist.');
}
}