Yii使用控制器 Yii控制器 Yii使用操作 Web应用程序中的控制器应该从 yii \ web \ Controller 或其子类 继承 。在控制台应用程序中,它们应该从yii \ console \ Controller或其子类继承。 让我们在 controllers 文件夹中创建一个示例控制器。 第1步 - 在 Controllers 文件夹中,使用以下代码创建一个名为 ExampleController.php 的文件。 <?php namespace app\controllers; use yii\web\Controller; class ExampleController extends Controller { public function actionIndex() { $message = "index action of the ExampleController"; return $this->render("example",[ 'message' => $message ]); } } ?> 第2步 - 在 views / example 文件夹中创建示例视图。在该文件夹中,使用以下代码创建一个名为 example.php 的文件。 <?php echo $message; ?> 每个应用程序都有一个默认控制器 对于Web应用程序,该站点是控制器,而对于控制台应用程序则是帮助。因此,当打开 http:// localhost:8080 / index.php URL时,站点控制器将处理该请求。 您可以更改应用程序配置中的默认控制器。 考虑给定的代码 - 'defaultRoute' => 'main' 第3步 - 将上面的代码添加到以下 config / web.php 。 <?php $params = require(__DIR__ . '/params.php'); $config = [ 'id' => 'basic', 'basePath' => dirname(__DIR__), 'bootstrap' => ['log'], 'components' => [ 'request' => [ // !!! insert a secret key in the following (if it is empty) - this is //required by cookie validation 'cookieValidationKey' => 'ymoaYrebZHa8gURuolioHGlK8fLXCKjO', ], 'cache' => [ 'class' => 'yii\caching\FileCache', ], 'user' => [ 'identityClass' => 'app\models\User', 'enableAutoLogin' => true, ], 'errorHandler' => [ 'errorAction' => 'site/error', ], 'mailer' => [ 'class' => 'yii\swiftmailer\Mailer', // send all mails to a file by default. You have to set // 'useFileTransport' to false and configure a transport // for the mailer to send real emails. 'useFileTransport' => true, ], 'log' => [ 'traceLevel' => YII_DEBUG ? 3 : 0, 'targets' => [ [ 'class' => 'yii\log\FileTarget', 'levels' => ['error', 'warning'], ], ], ], 'db' => require(__DIR__ . '/db.php'), ], //changing the default controller 'defaultRoute' => 'example', 'params' => $params, ]; if (YII_ENV_DEV) { // configuration adjustments for 'dev' environment $config['bootstrap'][] = 'debug'; $config['modules']['debug'] = [ 'class' => 'yii\debug\Module', ]; $config['bootstrap'][] = 'gii'; $config['modules']['gii'] = [ 'class' => 'yii\gii\Module', ]; } return $config; ?> 第4步 - 在Web浏览器的地址栏中键入 http:// localhost:8080 / index.php ,您将看到默认控制器是示例控制器。 注 - 控制器ID应包含小写英文字母,数字,正斜杠,连字符和下划线。 要将控制器ID转换为控制器类名称,您应该执行以下操作 - 取所有由连字符分隔的单词的第一个字母,并将其变成大写。 删除连字符。 将正斜杠替换为后斜杠。 添加控制器后缀。 预先安装控制器名称空间。 例子 页面变成 app \ controllers \ PageController 。 后期文章成为 app \ controllers \ PostArticleController 。 用户/后期文章变为 app \ controllers \ user \ PostArticleController 。 userBlogs / post-article成为 app \ controllers \ userBlogs \ PostArticleController 。 Yii控制器 Yii使用操作