虽然有很多好的文章介绍怎么使用事件和怎么把它们放到你的组件中,但是没有(我认为)文章介绍怎么在你的控制器中使用以下方法配置 CAction 类。
如果我们查看 Ccomponent 的魔术方法 __set, 我们就会发现事件处理程序通常像属性一样设置。 考虑到这些,以下是我的关于设置 CAction 类的事件处理程序的快速提示,我认为这是比较好的组织你的控制器的代码方法。
先写一个简单的 CAction 类的例子 EmyAction.php:
class EMyAction extends CAction{ public function onTest($event){ $this->raiseEvent('onTest', $event); } public function run() { $event = new CEvent($this); $this->onTest($event); } }
现在在我们的控制器中写一个事件处理程序的方法并且配置这个 action(假设在 controllers文件夹下的actions 文件夹下)
// 我们的事件处理程序的方法,为简单起见我们写在控制器里面 public function eventHandlerMethod($event) { echo 'TESTING Handler'; } // 声明 actions 和事件处理程序 public function actions() { return array( // test 是动作的名称'test'=>array( 'class'=>'actions.EMyAction', 'onTest'=>array($this,'eventHandlerMethod') ) ); }
现在所有代码都以完成,你可以使用任何浏览器来测试结果。