在yii2中,事件的綁定是透過yii\base\Component的on方法進行操作的,我們在定義事件的同時,需要為其綁定一個回呼函數。
看下例子,先寫下一個控制器,用on綁定事件,然後在方法裡面用triggle呼叫
namespace backend\controllers; use yii\web\Controller; class EventController extends Controller { const TEST_EVENT = 'event'; public function init() { parent::init(); $this->on(self::TEST_EVENT,function(){echo '这个一个事件测试。。。';}); } public function actionIndex() { $this->trigger(self::TEST_EVENT); } }
存取index方法後得到事件的結果。在進入控制器的時候就給‘event’綁定了一個時間,on第一個參數表示事件名(必須是常數),第二個參數是這個事件的回呼函數。
(推薦教學:yii框架)
也可以寫成如下的方式:
namespace backend\controllers; use yii\web\Controller; class EventController extends Controller { const TEST_EVENT = 'event'; public function init() { parent::init(); $this->on(self::TEST_EVENT,[$this,'onTest']); } public function onTest() { echo '这个一个事件测试。。。'; } public function actionIndex() { $this->trigger(self::TEST_EVENT); } }
$this表示的是本對象,'onTest'指的是執行的方法。事件綁定好後沒有呼叫還是沒用,此時用到yii\base\Compontent類別中的triggle方法來呼叫了。
事件的擴充運用(參數的傳入方法)
先定義一個控制器在裡面定義加調用,如果想要傳入不同的參數就要用到yii\base\Event 類別了
class EventController extends Controller { const TEST_USER = 'email'; //发送邮件 public function init() { parent::init(); $msg = new Msg(); $this->on(self::TEST_USER,[$msg,'Ontest'],'参数Test'); } public function actionTest() { $msgEvent = new MsgEvent(); $msgEvent->dateTime = 'Test时间'; $msgEvent->author = 'Test作者'; $msgEvent->content = 'Test内容'; $this->trigger(self::TEST_USER,$msgEvent); } }
class MsgEvent extends Event { public $dateTime; // 时间 public $author; // 作者 public $content; // 内容 }
msg裡面放的是呼叫的方法
class Msg extends ActiveRecord { public function onTest($event) //$event是yii\base\Event的对象 { print_r($event->author);//输出'Test作者' print_r($event->dateTime);//输出'Test时间' print_r($event->content);//输出'Test内容' print_r($event->data);//输出'参数Test' } }
更多程式相關內容學習,請造訪php中文網程式設計教學欄位!
以上是yii2.0怎麼綁定事件的詳細內容。更多資訊請關注PHP中文網其他相關文章!