0

カスタム コンソール コマンド スクリプト内でコンテナーをフェッチするにはどうすればよいですか?

私は電話できることを望んでいます

$this->container->get('kernel')->getCachedir();

また

$this->getDoctrine();

上記の2つの例をコントローラー内で呼び出すことはできますが、コマンド内では呼び出すことができませんか?..以下の単純化された例を参照してください

namespace Portal\WeeklyConversionBundle\Command;

use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;

class ExampleCommand extends ContainerAwareCommand
{

    protected function configure()
    {
        $this->setName('demo:greet')
          ->setDescription('Greet someone')
          ->addArgument('name', InputArgument::OPTIONAL, 'Who do you want to greet?')
          ->addOption('yell', null, InputOption::VALUE_NONE, 'If set, the task will yell in uppercase letters')
        ;
    }

    protected function execute(InputInterface $input, OutputInterface $output)
    {
        $name = $input->getArgument('name');
        if ($name) {
            $text = 'Hello '.$name;
        } else {
            $text = 'Hello';
        }

        // this returns an error?
        // $cacheDir = $this->container->get('kernel')->getCachedir();

        // edit - this works
        $this->getContainer()->get('kernel')->getCacheDir();


        $output->writeln($text);
    }
}

未定義のエラー メッセージを返しますか?.. どのように定義すればよいですか? アクセスできる ContainerAwareCommand を追加することで、this->container?

4

1 に答える 1

2

使用するのはどうですか、

$this->getContainer()->get('kernel')->getCacheDir();

ドキュメントの「コンソール コマンドの作成方法」セクションの「サービス コンテナーからサービスを取得する」セクションを参照してください。

ドキュメントから、

(より基本的な Command の代わりに) ContainerAwareCommandをコマンドの基本クラスとして使用することで、サービス コンテナーにアクセスできます。つまり、構成されたすべてのサービスにアクセスできます。

于 2013-03-06T16:49:22.730 に答える