Yii使用控制器

在Web應用程序中控制器應該從 yii\web\Controller 或其子類擴展。在控制檯應用程序,它們應該從 yii\console\Controller 或其子類擴展。

讓我們在 Controllers 文件夾創建一個控制器實例。

第1步 - 在 Controllers 文件夾中,創建一個名爲 ExampleController.php,使用下面的代碼。

render("example",\[ 'message' => $message \]); } } ?>

 

第2步 - 在 views/example 文件夾中創建一個 example 視圖。在該文件夾內,創建一個名爲 example.php 視圖文件,使用下面的代碼文件。

 

每個應用程序都有一個默認的控制器。對於Web應用程序,site是默認的控制器,而控制檯應用程序則是help。因此,當URL=>http://localhost:8080/index.php 被打開時,site 控制器將處理請求。當然你也可以更改應用程序配置默認的控制器。

考慮給定的代碼 -

'defaultRoute' => 'main' 

步驟3 - 將上述的代碼添加到下面文件 : config/web.php.

'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' => 'yiibai.com', \], '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,會看到默認的控制器是 example 控制器。
Yii使用控制器

注 - 控制器ID應包含小寫字母,數字,斜線,連字符英文字母和下劃線。

要將控制器ID轉換控制器類的名字,應該做到以下幾點 -

  • 以連字符分隔所有單詞的第一個字母,把它變成大寫
  • 刪除連字符
  • 替換反向斜線
  • 添加Controller後綴
  • 前面加上控制器命名空間

示例

  • page 變成 app\controllers\PageController.

  • post-article 變成 app\controllers\PostArticleController.

  • user/post-article 變成 app\controllers\user\PostArticleController.

  • userBlogs/post-article 變成 app\controllers\userBlogs\PostArticleController.