フォームを使用してデータベースからデータを更新しようとしています。
コントローラーは:
public function addAction($id) {
$em = $this->getDoctrine()->getEntityManager();
$product = $em->getRepository('AcmeStoreBundle:Product')->find($id);
if (!$product) {
$product = new Product();
}
$form = $this->createForm(new PageAdd(), $product);
$request = $this->getRequest();
if ($request->getMethod() == 'POST') {
$form->bindRequest($request);
$name=$this->get('request')->request->get('name');
$price=$this->get('request')->request->get('price');
$description=$this->get('request')->request->get('description');
if ($form->isValid()) {
$product->setName($name);
$product->setPrice($price);
$product->setDescription($description);
$em->persist($product);
$em->flush();
/*Llamando a la plantilla de listados*/
$product = $em->getRepository('AcmeStoreBundle:Product')->findAll();
/*Enviando los datos a la plantilla y Renderizandola*/
return $this->render('AcmeStoreBundle:Default:pageadd.html.twig', array('Product' => $product));
}
}
return $this->render('AcmeStoreBundle:Default:show.html.twig', array('form' => $form->createView(), 'product' => $product));
}
そしてshow.html.twig
ファイルは
<form action="{{ path('Product_add',{'id':product.id}) }}"
{{ form_enctype(form) }}>
{{ form_errors(form) }}
{{ form_rest(form) }}
<input type="submit" value="Save This Page" class="savebutton" />
</form>
そしてそれは私にエラーを与えます
オブジェクト "Acme\StoreBundle\Entity\Product" のメソッド "id" が AcmeStoreBundle:Default:show.html.twig 行 2 に存在しません 500 内部サーバー エラー - Twig_Error_Runtime