yii2简单视图渲染入门

创建动作

直接在 SiteController 控制器里声明 say 操作

是由文件 controllers/SiteController.php 定义的



namespace app\controllers;

use yii\web\Controller;

class SiteController extends Controller
{
    // ...现存的代码...

    public function actionSay($message = 'Hello')
    {
        return $this->render('say', ['message' => $message]);
    }
}

创建视图


use yii\helpers\Html;
?>
= Html::encode($message) ?>

say 视图应该存为 views/site/say.php 文件

试运行

http://hostname/index.php?r=site/say&message=Hello+World
面 URL 中的参数 r 需要更多解释。它代表 路由,是整个应用级的,指向特定操作的独立 ID


你可能感兴趣的:(php-yii2)