Symfony2 依赖关系
我想知道是否有适当的方法来检查依赖关系。
例如,我有一个 NewsBundle
。现在我必须检查是否有 CommentBundle
。如果有的话,它应该再执行一些代码。
有什么建议吗?
I'm wondering if there is a proper way to check the dependencies.
For example I've got a NewsBundle
. Now I'll have to check if there is a CommentBundle
. If there is one, it should execute a few more Code.
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
除了markymark的答案之外,您还可以使用以下代码片段检查控制器(或任何其他容器感知代码)中是否存在特定的服务:
如果您不确定某个服务的确切别名给定服务,或者只是为了好玩,您可以运行控制台命令 php app/console container:debug 来查看在容器中注册的所有服务。
In addition to markymark's answer, you can check if a specific service exists from your controller (or any other container-aware code) with the following snippet:
If you're not sure of the exact alias of a given service, or just for kicks and giggles, you can run the console command
php app/console container:debug
to see all services registered with the container.您可以在每个包都应具有的主 Bundle 类上使用 class_exists。
例如:
You could use class_exists on the main Bundle class that every bundle should have.
For example:
Kernel 类包含一系列辅助方法,用于检查某个类是否是某个类的一部分活动捆绑包或捆绑包是否已注册。
The Kernel class contains a list of helper methods to check if a certain class is part of an active bundle or if a bundle is registered.