具有文件类型字段editAction

时间:2017-08-17 08:23:01

标签: php symfony symfony-forms

当存在具有fileType字段的实体集合时,如何正确处理表单更新。我根据这个做了动作和听众 Symfony upload docs。实体创建工作完美,但编辑操作失败,因为没有选择文件,symfony尝试更新文件字段为空值的集合实体。

AppBundle\Entity\Product:
    type: entity
    # ...
    oneToMany:
        images:
            targetEntity: Image
            mappedBy: product

形式:

// AppBundle\Form\ProductType
public function buildForm(FormBuilderInterface $builder, array $options)
{
    $builder
        // ...
        ->add(
            'images',
            CollectionType::class,
            [
                'entry_type'    => ImageType::class,
                'allow_add'     => true,
                'allow_delete'  => true,
                'by_reference'  => false,
                'entry_options' => ['label' => false],
                'label_attr'    => [
                    'data-feature' => 'editable',
                ],
            ]
        );
}

// AppBundle\Form\ImageType   
public function buildForm(FormBuilderInterface $builder, array $options)
{
    $builder
        ->add('file', FileType::class, ['required' => false])
        // another fields...
}

行动:

// AppBundle\Controller\Backend\ProductController
// ...
public function editAction(Request $request, EntityManagerInterface $em, Product $product)
{
    $editForm = $this->createForm('AppBundle\Form\ProductType', $product);
    $editForm->handleRequest($request);

    $originalImages = new ArrayCollection();

    foreach ($product->getImages() as $image) {
        $originalImages->add($image);
    }

    if ($editForm->isSubmitted()) {
        if ($editForm->isValid()) {
            foreach ($originalImages as $image) {
                if (false === $product->getImages()->contains($image)) {
                    $em->remove($image);
                }
            }

            $em->flush();

            $this->addFlash('success', 'Success');
        } else {
            $this->addFlash('warning', 'Error saving');
        }

        return $this->redirectToRoute('backend_product_edit', ['id' => $product->getId()]);
    }
}
// ...

在我看来,我需要在某个地方取消空文件字段,但我不知道在哪里......(

P.S。我知道我可以使用像VichUploaderBundle这样的捆绑包,但我想了解它是如何工作的,以及我做错了什么! P.P.S.对不起我的英文

2 个答案:

答案 0 :(得分:2)

修改ImageType表单完全解决了我的问题

// AppBundle\Form\ImageType   
public function buildForm(FormBuilderInterface $builder, array $options)
{
    $builder
        ->add('file', FileType::class, ['required' => false, 'data_class' => null]])
        // another fields...
    ;
    // adding this forces to use old file if there is no file uploaded
    $builder->get('file')->addEventListener(FormEvents::PRE_SUBMIT, function (FormEvent $event) {
        if (null === $event->getData()) {
            $event->setData($event->getForm()->getData());
        }
    });
}

答案 1 :(得分:1)

一周前我遇到了同样的问题。在阅读了许多有关此问题的主题后,出于安全原因,您似乎无法预先填写表单的“文件字段”。

我实施的简单解决方案:

在“editAction方法”中:在呈现表单“edit”之前,在用户的会话中指定当前文件字段的值。

然后,当用户提交“更新”表单时,您可以使用更新前事件(例如学说生命周期)在会话中查找这些文件名,并在持久化之前将它们重新分配给您的实体。

基本上你应该做这样的事情(我给你的实体代码,你需要根据你的逻辑调整它)

我的案例中的学说关系是1新闻有1个图像文件。

在你的editAction中:

protected function editNewsAction()
{
    //some code 

    if (!$response instanceof RedirectResponse)
    {
        $entityId = $this->request->query->get('id'); //the id of my entity was in the query string in my logic

        $repo = $this->getDoctrine()->getManager()->getRepository('AppBundle:News');
        $oldEntity = $repo->findOneBy(['id' => $entityId]);
        $oldEntityImage = $oldEntity->getImage(); // I had oneToOne Relation so adapt it for your own logic

        $session = $this->get('session');
        $session->set('newsImage', $oldEntityImage);
    }

    // some code
}

然后在更新前的事件中:

protected function preUpdateNewsEntity($entity)
{
    //some code

    if (!$entity->getImageFile())
    {
        $session = $this->get('session');

        $entity->setImage($session->get('newsImage'));

        //don't forget to remove the value in session
        $session->remove('newsImage');
    }

    //some code
}

我希望这会对你有所帮助。