我在 Symfony 2.3 中做我自己的 Crud Generate。这是我的代码。
namespace Gotakey\BackendBundle\Command;
use Sensio\Bundle\GeneratorBundle\Generator\DoctrineCrudGenerator;
use Sensio\Bundle\GeneratorBundle\Command\GenerateDoctrineCrudCommand;
class MyDoctrineCrudCommand extends GenerateDoctrineCrudCommand
{
protected $generator;
protected function configure()
{
parent::configure();
$this->setName('gotakey:generate:crud');
$this->setDescription('My Crud generate');
}
protected function getGenerator($bundle = null)
{
$generator = new DoctrineCrudGenerator($this->getContainer()->get('filesystem'), __DIR__.'/../Resources/crud');
$this->setGenerator($generator);
return parent::getGenerator();
}
}
我的 Bundle /src/Gotakey/BackendBundle/Resources/crud 中有骨架。当我运行命令行时,显示以下错误。
[Twig_Error_Loader]
The "" directory does not exist.
任何人都知道我做错了什么。
谢谢和对不起我的英语。我不是专家