如何根据命令参数将服务动态注入 Symfony 命令. [英] How to inject services dynamically into Symfony Command based on command argument.

查看:22
本文介绍了如何根据命令参数将服务动态注入 Symfony 命令.的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个 Symfony 命令,它接受一个参数作为所需特定服务的定位器(基于该参数).

I have a Symfony command that takes an argument which serves as a locator to a specific service required (based on that argument).

即.

bin/console some:command service-locator-id

使用 Symfony 2.8,您可以简单地从容器中获取服务

with Symfony 2.8 you can simply fetch the service from the container

$service = $this->container->get($input->getArgument('service-locator-id'));

然而,在 Symfony 3.4 中,容器已被弃用,我们应该使用依赖注入.

With Symfony 3.4 however, the container is deprecated and we should be using Dependency Injection.

如何根据传递给 Command 的参数注入我需要的服务?

How do I inject the service that I require based on the argument being passed into the Command ?

推荐答案

好的,我终于能够使用服务定位器文档解决这个问题了.

Ok, I was finally able to figure this out using the service locator documentation.

https://symfony.com/doc/3.4/service_container/service_subscribers_locators.html

基本上,

class MyCommand extends ContainerAwareCommand implements ServiceSubscriberInterface
{

    private $locator;

    private $serviceId;

    public static function getSubscribedServices()
    {
        return [
            'service-locator-id-one' => ServiceClassOne::class,
            'service-locator-id-two' => ServiceClassTwo::class,
        ];
    }

    /**
     * @required
     * @param ContainerInterface $locator
     */
    public function setLocator(ContainerInterface $locator)
    {
        $this->locator = $locator;
    }

    protected function configure()
    {
        $this
        ->setName('some:command')
        ->addArgument('service-locator-id', InputArgument::REQUIRED, 'Service Identifier');
    }

    /**
     * 
     * @return void|MyServiceInterface
     */
    private function getService()
    {
        if ($this->locator->has($this->serviceId)) {
            return $this->locator->get($this->serviceId);
        }
    }
}

完美运行.

这篇关于如何根据命令参数将服务动态注入 Symfony 命令.的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆