Symfony2 - 如何在自定义控制台命令中访问服务?

时间:2013-10-11 15:23:40

标签: php symfony console command

我是Symfony的新手。我创建了一个自定义命令,其唯一目的是从系统中擦除演示数据,但我不知道如何执行此操作。

在控制器中,我会这样做:

$nodes = $this->getDoctrine()
    ->getRepository('MyFreelancerPortfolioBundle:TreeNode')
    ->findAll();

$em = $this->getDoctrine()->getManager();
foreach($nodes as $node)
{
    $em->remove($node);
}
$em->flush();

从我得到的命令中的execute()函数执行此操作:

Call to undefined method ..... ::getDoctrine();

我如何从execute()函数执行此操作?此外,如果有一种更简单的方法来擦除数据而不是循环访问它们并将其删除,请随时提及。

2 个答案:

答案 0 :(得分:13)

为了能够访问服务容器,您的命令需要扩展Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand

请参阅命令文档章节 - Getting Services from the Container

use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
// ... other use statements

class MyCommand extends ContainerAwareCommand
{
    protected function execute(InputInterface $input, OutputInterface $output)
    {
        $em = $this->getContainer()->get('doctrine')->getEntityManager();
        // ...

答案 1 :(得分:12)

Symfony 3.3 (2017年5月)以来,您可以轻松地在命令中使用依赖注入。

只需在services.yml中使用PSR-4 services autodiscovery

services:
    _defaults:
        autowire: true

    App\Command\:
        resource: ../Command

然后使用常见的构造函数注入,最后甚至Commands将具有干净的架构:

final class MyCommand extends Command
{
    /**
     * @var SomeDependency
     */
    private $someDependency;

    public function __construct(SomeDependency $someDependency)
    {
        $this->someDependency = $someDependency;

        // this is required due to parent constructor, which sets up name 
        parent::__construct(); 
    }
}

Symfony 3.4 (2017年11月)commands will be lazy loaded时,这将(或已经完成,取决于阅读时间)成为标准。