我正在学习Symfony 2,我正在学习如何将数据从表格显示到视图中。
为此,我有这段代码:
<?php
namespace Ecommerce\EcommerceBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Ecommerce\EcommerceBundle\Entity\Produits;
class TestController extends Controller
{
public function ajoutAction()
{
$em = $this->getDoctrine()->getEntityManager();
$produits = $em->getRepository('EcommerceBundle:Produits')->findAll();
return $this->render('EcommerceBundle:Default:test.html.twig',array('produits'=>$produits));
}
}
我收到此错误消息:
尝试从命名空间加载类“ProduitsRepository” “电子商务\ EcommerceBundle \实体”。你忘记了“使用”声明吗? 另一个名称空间?
我检查了我的命名空间......但我找不到解决方案。
这是我目录的一部分: