1

データベースのデータを更新しようとしていますが、残念ながら Symfony は新しいデータを作成し続けます。私は次のコントローラーを持っています:

public function updateAction(Request $request,$id)
{
    $em = $this->getDoctrine()->getManager();
    $product = $em->getRepository('AcmeStoreBundle:Product')->find($id);

    if (!$product) {
        throw $this->createNotFoundException(
            'No product found for id '.$id
        );
    }

    $form = $this->createForm(new ProductType(), $product);

    if($request->isMethod('POST')) {
        $form->bind($request);
        if($form->isValid()) {
            $em->persist($product);
            $em->flush();
            $this->get('session')->getFlashBag()->add('green', 'Product Updated!');
        } else {
            //$this->get('logger')->info('This will be written in logs');
            $this->get('session')->getFlashBag()->add('red', 'Update of Product Failed!');
        }
        return $this->redirect($this->generateUrl('acme_store_product_all'));
    }

    return $this->render('AcmeStoreBundle:Default:update.html.twig',array(
        'name' => $product->getName(),
        'updateForm' => $form->createView(),
    ));
}

私は何が間違っているのか疑問に思っています。Symfony は初めてです

編集

// Acme/StoreBundle/Form/Type/ProductType.php
namespace Acme\StoreBundle\Form\Type;

use Acme\StoreBundle\Entity\Category;

use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;

class ProductType extends AbstractType
{
    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $builder->add('name');
        $builder->add('price');
        $builder->add('description');
        $builder->add('category', 'entity',array('class' => 'AcmeStoreBundle:Category',));
    }

    public function getName()
    {
        return 'name';
    }
}
4

1 に答える 1