yii2.0 控制器

来源:互联网 发布:快递单子打印软件 编辑:程序博客网 时间:2024/04/29 07:07

控制器类存放在
application/controllers目录下

命名规则:驼峰法;
IdexController.php

继承自谁?:

namespace app\controllers;//命名空间use yii\web\Controller;//继承自web下的Controller,注意Controller首字母大写;class IdexController extends Controller//驼峰法大写

创建:IndexController.php

namespace app\controllers;use yii\web\Controller;class SiteController extends Controller{    // ...其它代码...    public function actionSay($message = 'Hello')//注意此处的动作为actionSay;    {        return $this->render('say', ['message' => $message]);//注意此处用render渲染模板文件    }}
0 0
原创粉丝点击