欢迎光临
感谢一路有你

yii初体验(5)控制器 操作的简单介绍

如果你对该文章中的内容有疑问/不解,可以点击此处链接提问
要注明问题和此文章链接地址 点击此处跳转
 
控制器
ControllerID/ActionID
ModuleID/ControllerID/ActionID(属于模块下的控制器)
控制器ID应仅包含英文小写字母、数字、下划线、中横杠和正斜杠
  • article 对应 app\controllers\ArticleController;
  • post-comment 对应 app\controllers\PostCommentController;
  • admin/post-comment 对应app\controllers\admin\PostCommentController;
  • adminPanels/post-comment 对应app\controllers\adminPanels\PostCommentController
方法(操作)
index 和 hello-world
public functionactionIndex() public functionactionHelloWorld()
操作ID应仅包含英文小写字母、数字、下划线和中横杠,操作ID中的中横杠用来分隔单词。
独立操作
public function actions() { return [ // 用类来申明"error" 操作 'error' => 'yii\web\ErrorAction', // 用配置数组申明 "view" 操作 'view' => [ 'class' => 'yii\web\ViewAction', 'viewPrefix' => '', ], ]; }
// 用户浏览器跳转到 http://example.com return $this->redirect('http://example.com');
默认操作,默认index,可以自定义
public $defaultAction ='home'; public functionactionHome(){return $this->render('home');}
控制器的生命周期
beforeAction()
afterAction()

赞(0) 打赏
未经允许不得转载:王明昌博客 » yii初体验(5)控制器 操作的简单介绍
分享到: 更多 (0)

相关推荐

  • 暂无文章

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏

×
订阅图标按钮