2014-11-04 122 views
0

我使用原則2. 我創建了一個實體的產品,當我想在數據庫中添加一個產品還給我一個錯誤:試圖從命名空間加載類您是否需要從另一個命名空間「使用」它?

嘗試從命名空間加載類「Produit」「DWM \ catalogueBundle \實體」在/Applications/MAMP/htdocs/RESTApi/src/Dwm/catalogueBundle/Controller/DefaultController.php第41行。你是否需要從另一個命名空間「使用」它?

<?php 

namespace Dwm\catalogueBundle\Controller; 

use Symfony\Bundle\FrameworkBundle\Controller\Controller; 
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; 
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template; 
use Dwm\catalogueBundle\Entity\Produit; 

class DefaultController extends Controller 
{ 
/** 
* @Route("/addProduit/{nom}/{prix}") 
* @Template() 
*/ 
public function addProduitAction($nom, $prix) 
{ 

$p = new Produit(); 
$p->setNom($nom); 
$p->setPrix($prix); 
$em = $this->getDoctrine()->getManager(); 
$em->persist($p); 
$em->flush(); 

return array('ptoduit'=>$p); 
} 
} 
+1

'產品'或'產品'? – Steve 2014-11-04 12:24:01

+0

在5種情況下,您正在使用'Produit'而不是'Product'。 '使用Dwm \ catalogueBundle \ Entity \ Produit;' '* @Route(「/ addProduit/{nom}/{prix}」)' 'public function addProduitAction($ nom,$ prix)' '$ p = new Produit();' 'return array('ptoduit'=> $ p);' 我認爲你的文件也是錯誤的。只是要確定。 – klauskpm 2014-11-04 12:26:59

回答

1

不要認爲這是根本原因,但您的包名稱應該是駱駝大小寫:CatalogueBundle而不是catalogueBundle。它可能不會造成這種情況,但在你繼續時肯定會弄亂其他事情。

+1

這可能是區分大小寫的文件系統的問題。 – Yoshi 2014-11-04 12:25:06

+0

謝謝 我改正了! – 2014-11-04 14:03:49

相關問題