MixMVC 中所有的controller继承于MST_ActionController,负责View与Model之间的调度。一般只建议把调用代码写到Controller中,尽量减少把具体逻辑的实现写在Controller中。
命名规则:
定义Controller的文件放在application/controller目录下,文件命名规则是首字母大写。
例如:定义了Class IndecController, 那对应的PHP文件应该是IndexController.php
默认URL路由:
MixMVC中预定于一套UrlReWrite规则
默认的规则{:controller}/{:action}/{:target}/{:others}.{:format}
MST_ActionController_Router会将URL按以上默认规则,然后填充到MST_ActionController_Request中,然后调用相关的Controller。
例子:
URL:http://localhost/index/index/article.html
这个URL中MST_ActionController_Router会理解成
调用IndexController中的indexAction() 方法,而MST_ActionController_Request填充后会包含以下内容:$this->params = array( 'controller' => 'index', //controller名称 'action' => 'index', //action名称 'target' => 'artcle', //target参数 'format' => 'html', //请求格式 );备注:在controller中$this->params一个MST_ActionController_Request对象。
MixMVC中对URL路由默认的匹配参数,如果url中没有明确指定controller 及 action,都会以默认的参数填充MST_ActionController_Request,
默认的controller是IndexController, 默认的Action是indexAction,默认的target是null,默认的format是html。
例子:
URL:http://localhost
这个URL中MST_ActionController_Router会理解成$this->params = array( 'controller' => 'index', //默认的controller 'action' => 'index', //默认的action 'target' => null, //默认的target 'format' => 'html', //默认的format );
Controller的预处理
很多时候我们需要对流程进行基本的预处理,例如启动session支持。我们就需要在进入每个Action之前写一下session_start之类的处理方法。为了简化每个action的代码量,引入的预处理函数。在Controller中application函数,就是在进入action之前,所有的Controller会先调用自身的application函数,我们可以将一些每个请求都必需的代码(session处理,身份验证等)写到application函数中。
class IndexController extends MST_ActionController { public function application() { //预处理函数 } public function indexAction() { //action的逻辑处理 } }
如果应用中有多个controller需要使用相同的预处理流程(例如在后台身份验证),我们还可以将预处理及一些其他controller使用的方法定义到__Application类中。然后让其他需要用到这些流程及方法的Controller继承__Application类。在MixMVC加载流程中会自动检测application/controller目录下是否存在__Application.php,然后自动include进来,所以在编写controller的时候,不需要手动 include __Application.php。编写__Application Class的时候,需要继承MST_ActionController,及实现application方法。
class __Application extends MST_ActionController { public function application() { //预处理函数 } } class IndexController extends __Application { public function indexAction() { //action的逻辑处理 } }
Controller的预定义变量
public $layout = false, //默认的layout名称 $format = 'html', //默认的格式,用户设置页面输出的Content-Type $params = null, //MST_ActionController_Router填充后的MST_ActionController_Request对象 $status = -1; //页面输出的http状态值,一般不需要设置
Controller的预定义方法
class IndexController extends MST_ActionController { public function indexAction() { $this->redirect('http://www.google.com/'); //结束页面输出,跳转到http://www.google.com/ } }class IndexController extends MST_ActionController { public function indexAction() { $this->action('other'); //调用other Action } public function otherAction() { } }class IndexController extends MST_ActionController { public function emptyAction() { return false; //不输出任何view } public function indexAction() { return; //直接输出 index View } public function otherAction() { $this->render(self::VIEW, 'other_view'); //输出 other_view View } public function textAction() { $this->render(self::TEXT, 'Hello World!'); //输出"Hello World!" } public function jsonAction() { $this->format = 'json'; //设置输出的Content-Type:application/json $this->render(self::TEXT, json_encode(array('result' => 'Hello World!'))); //输出JSON字符串{"result":"Hello World!"} } }
对于框架入门不错的文档