Symfony2,跨多个捆绑包访问相同的调度程序

发布于 2024-11-16 18:57:57 字数 76 浏览 0 评论 0原文

我有一个 symfony2 捆绑包有一个事件,如何让多个其他捆绑包监听该事件?

IE。如何在捆绑包之间传递我的调度程序?

I have a symfony2 bundle that has an event, how can I get multiple other bundles to listen for that event?

Ie. how can I pass my dispatcher between bundles?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风吹短裙飘 2024-11-23 18:57:57

使用 event_dispatcher 服务而不是定义您自己的服务。

例如,如果您使用 YAML 配置文件并定义将分派事件的自定义服务,请将 "@event_dispatcher" 声明为服务的参数。

在控制器中,您可以使用 $this->container->get('event_dispatcher'); 来完成同样的事情。

所有框架内部都使用这个提供的服务,并且所有想要全局触发或侦听事件的包也应该使用它。

Use the event_dispatcher service instead of defining your own.

For example, if you're using YAML configuration files and are defining a custom service that will dispatch events, declare "@event_dispatcher" as an argument to your service.

From a controller, you can use $this->container->get('event_dispatcher'); to accomplish the same thing.

All the framework internals use this provided service, and all bundles that want to fire or listen to events globally should use it as well.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文