我有一个基本控制器,我想在其中使用实体管理器:
<?php
namespace HanziGame\MainBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use HanziGame\MainBundle\Entity\Hanzi;
class DefaultController extends Controller
{
public function indexAction()
{
$em = $this->get('registry')->getEntityManager();
return $this->render('HanziGameMainBundle:Default:index.html.twig');
}
}
当我运行它时,我收到此错误:
You have requested a non-existent service "registry".
500 Internal Server Error - NonExistentServiceException
在我看来,我正在关注 Symfony 的书(http://symfony.com/doc/2.0/book/doctrine/orm.html),我不知道如何纠正这个问题。我没看到什么?