我是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()函数执行此操作?此外,如果有一种更简单的方法来擦除数据而不是循环访问它们并将其删除,请随时提及。
答案 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时,这将(或已经完成,取决于阅读时间)成为标准。