2013-03-06 48 views
0

如何獲取自定義控制檯命令腳本中的容器?symfony2自定義控制檯如何包含容器?

IM希望能夠調用

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

$this->getDoctrine(); 

我可以調用該命令中的控制器內,但不是上面的兩個例子?..見下文

簡化示例
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?

回答

2

怎麼樣使用,

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

看看在Getting Services from the Service Container部分的機制的文檔的How to create a Console Command一部分。

從文檔,

通過使用ContainerAwareCommand作爲命令(而不是更基本的命令)的基類,您可以訪問服務容器。換句話說,您可以訪問任何配置的服務。

+0

感謝您的支持。林不知道我想創建一個全新的服務,似乎它增加了額外的完整性?或者我可以創建一個返回容器的服務? – 2013-03-06 17:03:45

+0

@Robbo_UK這只是一個例子:)這裏的關鍵是使用$ this-> getContainer()而不是$ this-> container。然後你可以訪問'內核'服務。 您不需要創建任何服務,只需編輯您調用容器的方式即可。 (我更新了答案) – 2013-03-06 17:06:28

+0

它工作。謝謝 :-) – 2013-03-06 17:10:51