Symfony2 中event的問題
天蓬老师
天蓬老师 2017-05-16 16:44:46
0
1
535

今天看了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裡面,但明明執行了的啊?

天蓬老师
天蓬老师

欢迎选择我的课程,让我们一起见证您的进步~~

全部回覆(1)
曾经蜡笔没有小新

你的symfony 2的具體版本?

如果確實寫了log,表示你的event相關程式碼是有效的。

profiler(debug bar)裡顯示的信息,是透過data collector收集來的,至於為什麼沒有記錄到listener的調用,則需要知道更多細節才能了解,建議你詳細檢查xdebug token和profiler信息的對應關係。

另外,不要直接注入container給event,這樣依賴過於寬泛了。

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板