(Yaf >=1.0.0)
Yaf_Controller_Abstract 是Yaf的MVC體系的核心部分。 MVC是指Model-View-Controller, 是一個用于分離應用邏輯和表現(xiàn)邏輯的設計模式。
每個用戶自定義controller都應當繼承Yaf_Controller_Abstract。
你會發(fā)現(xiàn)在你自己的controller中無法定義__construct方法。因此,Yaf_Controller_Abstract 提供了一個魔術方法Yaf_Controller_Abstract::init()。
如果在你自己的controller里面已經(jīng)定義了一個init()方法,當你的controller被實例化的時候,它將被調用。
Action可能需要參數(shù),當一個請求來到的時候,在路由中如果請求的參數(shù)有相同名稱的變量(例如:Yaf_Request_Abstract::getParam()), Yaf將把他們傳遞給action方法(see Yaf_Action_Abstract::execute())。
$module
,$controller
= ?,$action
= ?,$paramters
= ?你也可以通過使用這個值和 Yaf_Action_Abstract 在一個單獨的PHP腳本中定義action函數(shù)。
示例 #1 在一個獨立的文件中定義action
<?php
class IndexController extends Yaf_Controller_Abstract {
protected $actions = array(
/** now dummyAction is defined in a separate file */
"dummy" => "actions/Dummy_action.php",
);
/* action method may have arguments */
public indexAction($name, $id) {
assert($name == $this->getRequest()->getParam("name"));
assert($id == $this->_request->getParam("id"));
}
}
?>
示例 #2 Dummy_action.php
<?php
class DummyAction extends Yaf_Action_Abstract {
/* a action class shall define this method as the entry point */
public execute() {
}
}
?>
模塊名
當前的請求實例
視圖引擎