3

当我扩展 ContainerAware 或实现 ContainerAwareInterface 时,该服务不会调用 setContainer。

class CustomService implements ContainerAwareInterface
{
    public function setContainer(ContainerInterface $container = null)
    {
        $this->container = $container;
    }
}

如何在不注入服务的情况下使用我的服务中的容器?是否需要将容器对象传递给构造函数或设置器?

4

5 回答 5

7

在你的 services.yml 文件中定义

services:
    bundle.service_name: 
        class: ...
        calls:
            - [ setContainer, [ @service_container ] ]
于 2013-07-05T09:07:48.270 回答
5

您必须将服务名称放在引号内:

services:
    bundle.service_name: 
        class: ...
        calls:
            - [ setContainer, [ '@service_container' ]]
于 2015-05-02T23:42:30.337 回答
3

仅执行ContainerAwareorContainerAwareInterface是不够的。您必须使用service_containeras 参数调用 setter 注入。但不建议注入完整的容器。最好只注入你真正需要的服务。

于 2013-07-05T09:07:58.570 回答
2

这是容器感知服务的完整实现示例。

但请注意,应避免注入整个容器。最好只注入所需的组件。有关该主题的更多信息,请参阅得墨忒耳法则 - 维基百科

为此,此命令将帮助您找到所有可用的服务:

# symfony < 3.0
php app/console debug:container

# symfony >= 3.0
php bin/console debug:container

无论如何,这是完整的示例。

app/config/services.yml文件:

app.my_service:
    class: AppBundle\Service\MyService
    calls:
        - [setContainer, ['@service_container']]

中的服务类src/AppBundle/Service/MyService.php

<?php

namespace AppBundle\Service;

use Symfony\Component\DependencyInjection\ContainerAwareInterface;
use Symfony\Component\DependencyInjection\ContainerAwareTrait;

class MyService implements ContainerAwareInterface
{
    use ContainerAwareTrait;

    public function useTheContainer()
    {
        // do something with the container
        $container = $this->container;
    }
}

最后你的控制器在src/AppBundle/Controller/MyController.php

<?php

namespace AppBundle\Controller;

use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\HttpFoundation\Response;

/**
 * My controller.
 */
class MyController extends Controller
{
    /**
     * @Route("/", name="app_index")
     * @Method("GET")
     */
    public function indexAction(Request $request)
    {
        $myService = $this->get('app.my_service');
        $myService->useTheContainer();

        return new Response();
    }
}
于 2016-11-23T00:47:11.870 回答
1

还有ContainerAwareTrait可用于实现 ContainerAwareInterface。

于 2016-08-12T16:54:53.963 回答