Не удается обновить существующую сущность Doctrine - PullRequest
0 голосов
/ 11 декабря 2018

Я работаю с symfony 2.7 компонентом формы для обновления сущности с именем TapsAlert.
Проблема в том, что сущность не обновляется после отправки формы.
Я не знаюне знаю, что происходит не так.Спасибо за совет, вот часть кода:

public function editarRegistroAction(Request $request, $id){

    $em = $this->getDoctrine()->getManager();
    $altd = $em->getRepository('ModeloBundle:TapsAlert')->find($id);


    $altd->setAsunto($altd->getAsunto());
    $altd->setGls($altd->getGls());
    $altd->setDestinatario($altd->getDestinatario());
    $altd->setPrts($altd->getPrts());
    $altd->setTags($altd->getTags());
    $altd->setValor($altd->getValor());


    $form = $this->createFormBuilder($altd)
        ->add('Asunto', 'text')
        ->add('gls', 'text')
        ->add('destinatario', 'text')
        //->add('dias', 'number')
        ->add('prts', 'text')
        ->add('Tags', 'text')
        ->add('valor', 'text')
        ->add('save', 'submit', array('label' => 'Guardar Cambios'))
        ->getForm();



        //$form->handleRequest($request);

        if ($form->isSubmitted() && $form->isValid()) {

            //$edAlert = $form->getData();
            $em = $this->getDoctrine()->getManager();
            //$em->persist($altd);
            $em->flush();

            return $this->redirect('http://192.168.1.128/');

        }



    return $this->render('MotoBundle:Default:edit.html.twig', array('form' => $form->createView()));

}

1 Ответ

0 голосов
/ 11 декабря 2018

Первый: эта часть кода бесполезна.Он должен быть удален:

$altd->setAsunto($altd->getAsunto());
$altd->setGls($altd->getGls());
$altd->setDestinatario($altd->getDestinatario());
$altd->setPrts($altd->getPrts());
$altd->setTags($altd->getTags());
$altd->setValor($altd->getValor());

Второй : Вы не обрабатываете свой запрос:

  public function editarRegistroAction(Request $request, $id){
        $em = $this->getDoctrine()->getManager();
        $altd = $em->getRepository('ModeloBundle:TapsAlert')->find($id);

        $form = $this->createFormBuilder($altd)
            ->add('Asunto', 'text')
            ->add('gls', 'text')
            ->add('destinatario', 'text')
            //->add('dias', 'number')
            ->add('prts', 'text')
            ->add('Tags', 'text')
            ->add('valor', 'text')
            ->add('save', 'submit', array('label' => 'Guardar Cambios'))
            ->getForm();

            $form->handleRequest($request); //uncomment this line
            if ($form->isSubmitted() && $form->isValid()) {
                $em->flush();

                return $this->redirect('http://192.168.1.128/'); // This url should an be an external url
            }

        return $this->render('MotoBundle:Default:edit.html.twig', array('form' => $form->createView()));
    }

Третий: Я полагаю, что выможно улучшить ваш код с помощью paramConvertor :

  public function editarRegistroAction(Request $request, TapsAlert $tapsAlert){

        $form = $this->createFormBuilder($tapsAlert)
            ->add('Asunto', 'text')
            ->add('gls', 'text')
            ->add('destinatario', 'text')
            //->add('dias', 'number')
            ->add('prts', 'text')
            ->add('Tags', 'text')
            ->add('valor', 'text')
            ->add('save', 'submit', array('label' => 'Guardar Cambios'))
            ->getForm();

            $form->handleRequest($request);
            if ($form->isSubmitted() && $form->isValid()) {
                $this->getDoctrine()->getManager()->flush();

                return $this->redirect('http://192.168.1.128/'); // This url should an be an external url
            }

        return $this->render('MotoBundle:Default:edit.html.twig', array('form' => $form->createView()));
    }

Рекомендуется также создавать форму в отдельном классе, для получения более подробной информации обращайтесь к официальной документации.https://symfony.com/doc/current/forms.html#creating-form-classes

...