今天看了symfony中event章節,自己也動手做了個實驗,但是有一個地方不是很明白。
我首先定義了一個Eents的枚舉類別用於管理所有的event
<?php
namespace Wolehao\HomeBundle\Event;
final class Events{
const HOMEPAGE_VISIT = "home.homepage_visit";
}
在HomepageBundle定義了一個event
<?php
namespace Wolehao\HomeBundle\Event;
// 这个是sf为你提供的一个基础类
use Symfony\Component\EventDispatcher\Event;
// 你的事件类
class HomepageVisit extends Event {
public $container;
public function __construct($container) {
$this->container = $container;
}
}
然後在FileBundle中定義了一個listener
<?php
namespace Wolehao\FileBundle\EventListener;
use Wolehao\HomeBundle\Event\HomepageVisit;
class FileListener
{
public function onHomepageVisit(HomepageVisit $event)
{
$event->container->get("logger")->info("我执行了");
// ...
}
}
在service.xml中註冊服務
<services>
<service id="file.listener" class="Wolehao\FileBundle\EventListener\FileListener">
<tag name="kernel.event_listener" event="home.homepage_visit" method="onHomepageVisit"/>
</service>
</services>
最後我在HomepageBundle的controller中觸發事件
<?php
namespace Wolehao\HomeBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
use Wolehao\HomeBundle\Event\HomepageVisit;
use Wolehao\HomeBundle\Event\Events;
use Wolehao\FileBundle\Event\Listener;
class DefaultController extends Controller
{
/**
* @Route("/home/{name}")
* @Template()
*/
public function indexAction($name)
{
$event = new HomepageVisit($this->container);
// 在controller里取事件分发器
$dispatcher = $this->get('event_dispatcher');
$dispatcher->dispatch(Events::HOMEPAGE_VISIT, $event);
return array('name' => $name);
}
}
先在我透過http://localhost/fm/web/app_dev.php/home/index訪問
能夠正確的列印出"我執行了"的日誌
一切好像都沒有問題,說明事件成功被觸發執行
現在透過點擊debug bar,的event項如下面所示:
#
我不懂的是為什麼home.homepage_visit在Not Called Listeners裡面,但明明執行了的啊?
你的symfony 2的具體版本?
如果確實寫了log,表示你的event相關程式碼是有效的。
profiler(debug bar)裡顯示的信息,是透過data collector收集來的,至於為什麼沒有記錄到listener的調用,則需要知道更多細節才能了解,建議你詳細檢查xdebug token和profiler信息的對應關係。
另外,不要直接注入container給event,這樣依賴過於寬泛了。