dqudtskm49788 2015-10-14 09:44
浏览 56
已采纳

Symfony2 - 上传文件(编辑表格)

My problem is, when I upload a file with a edit form, if entity's field is empty, the file upload perfectly, but, if the entity's field is not empty (previously I've uploaded a file), the field that reference the file uploaded is not updated and the file is not uploaded.

My entity relationship is the next:

  • Class Documents => Table where the names and paths are stored.
  • Class MyEntity (any with edit action) => Entitys with a int field that reference Documents.id

MyEntityController.php

public function editTeamAction($comp, $id) {
    if(!$id)
        throw $this->createNotFoundException('ID is needed, '. $id);
    $em = $this->getDoctrine()->getEntityManager();
    $entity = $em->getRepository('MyBundle:MyEntity')->find($id);
    if(!$entity)
        throw $this->createNotFoundException('Entity not found with id '. $id);
    $editForm = $this->createEditForm($entity);

    return $this->render("MyBundle::edit.html.twig", array("entity"=> $entity, "comp" => $comp, "edit_form"=>$editForm->createView(), "path_form" => "ent_update"));
}

private function createEditForm(MyEntity $entity) {
    $form = $this->createForm(new MyEntityType(), $entity);
    $form->add('submit', 'submit', array('label' => 'Update'));

    return $form;
}

public function updateTeamAction(Request $request, $comp, $id) {
    $em = $this->getDoctrine()->getEntityManager();
    $entity = $em->getRepository('MyBundle:MyEntity')->find($id);
    if(!$entity)
        throw $this->createNotFoundException('Entity not found with id '. $id);

    $editForm = $this->createEditForm($entity);
    $editForm->handleRequest($request);

    if($editForm->isValid())
    {
        $em->persist($entity);
        $em->flush();

        $this->get('session')->getFlashBag()->add(
            'notice',
            'Edit success.'
        );
        return $this->redirect($this->generateUrl('ent_edit', array('comp' => $comp, 'id' => $id)));
    }
    return $this->render("MyBundle::edit.html.twig", array("entity"=> $entity, "comp" => $comp, "edit_form"=>$editForm->createView(), "path_form" => "ent_update"));
}

MyEntity.php

namespace My\Bundle\Entity;

use Doctrine\ORM\Mapping as ORM;
use My\Bundle\Entity\Documents;

/**
 * MyEntity
 *
 * @ORM\Table()
 * @ORM\Entity
 * @ORM\HasLifecycleCallbacks
 */
class MyEntity
{
    /**
     * @var integer
     *
     * @ORM\Column(name="id", type="integer")
     * @ORM\Id
     * @ORM\GeneratedValue(strategy="AUTO")
     */
    private $id;

    /**
     * @var string
     *
     * @ORM\Column(name="name", type="string", length=255)
     */
    private $name;

    /**
     * @ORM\ManyToOne(targetEntity="Comp", inversedBy="myentity")
     * @ORM\JoinColumn(name="comp_id", referencedColumnName="id")
     */
    protected $Comp;

    /**
     * @var string
     *
     * @ORM\Column(name="web", type="string", length=255, nullable=true)
     */
    private $web;

    /**
     * @ORM\ManyToOne(targetEntity="Documents", cascade={"persist", "remove"}, inversedBy="myentity")
     * @ORM\JoinColumn(name="logo", referencedColumnName="id", nullable=true)
     */
    private $logo = null;

    /**
     * @ORM\Column(type="datetime")
     *
     * @var \DateTime
     */
    private $updatedAt;

    /**
     * @ORM\ManyToOne(targetEntity="Documents", inversedBy="myentity")
     * @ORM\JoinColumn(name="images", referencedColumnName="id", nullable=true)
     */
    protected $images = null;

    public function __construct()
    {
    }

    /**
     * Get id
     *
     * @return integer 
     */
    public function getId()
    {
        return $this->id;
    }

    /**
     * Set name
     *
     * @param string $name
     * @return MyEntity
     */
    public function setName($name)
    {
        $this->name = $name;

        return $this;
    }

    /**
     * Get name
     *
     * @return string 
     */
    public function getName()
    {
        return $this->name;
    }

    /**
     * Set comp
     *
     * @param \My\Bundle\Entity\Comp $comp
     * @return MyEntity
     */
    public function setComp(\My\Bundle\Entity\Comp $comp = null)
    {
        $this->comp = $comp;

        return $this;
    }

    /**
     * Get comp
     *
     * @return \My\Bundle\Entity\Comp 
     */
    public function getCompeticion()
    {
        return $this->competicion;
    }

    /**
     * Set web
     *
     * @param string $web
     * @return MyEntity
     */
    public function setWeb($web)
    {
        $this->web = $web;

        return $this;
    }

    /**
     * Get web
     *
     * @return string 
     */
    public function getWeb()
    {
        return $this->web;
    }

    /**
     * Set images
     *
     * @param \My\Bundle\Entity\Documents $images
     * @return MyEntity
     */
    public function setImages(\My\Bundle\Entity\Documents $images = null)
    {
        $this->images = $images;

        return $this;
    }

    /**
     * Get images
     *
     * @return \My\Bundle\Entity\Documents 
     */
    public function getImages()
    {
        return $this->images;
    }

    /**
     * Set updatedAt
     *
     * @param \DateTime $updatedAt
     * @return MyEntity
     */
    public function setUpdatedAt($updatedAt)
    {
        $this->updatedAt = $updatedAt;

        return $this;
    }

    /**
     * Get updatedAt
     *
     * @return \DateTime 
     */
    public function getUpdatedAt()
    {
        return $this->updatedAt;
    }

    /**
     * Set logo
     *
     * @param \My\Bundle\Entity\Documents $logo
     * @return MyEntity
     */
    public function setLogo(\My\Bundle\Entity\Documents $logo = null)
    {
        $this->logo = $logo;

        return $this;
    }

    /**
     * Get logo
     *
     * @return \My\Bundle\Entity\Documents 
     */
    public function getLogo()
    {
        return $this->logo;
    }
}

Documents.php

namespace My\Bundle\Entity;

use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Validator\Constraints as Assert;
use Symfony\Component\HttpFoundation\File\UploadedFile;
use Symfony\Component\HttpFoundation\File\File;

/**
 * Documents
 *
 * @ORM\Table()
 * @ORM\Entity
 * @ORM\HasLifecycleCallbacks
 */
class Documents
{
    /**
     * @var integer
     *
     * @ORM\Column(name="id", type="integer")
     * @ORM\Id
     * @ORM\GeneratedValue(strategy="AUTO")
     */
    private $id;

    /**
     * @var string
     *
     * @ORM\Column(name="name", type="string", length=255)
     * @Assert\NotBlank
     */
    private $name;

    /**
     * @var string
     *
     * @ORM\Column(name="path", type="string", length=255)
     */
    private $path;

    public $file;

    /**
     * @ORM\OneToMany(targetEntity="MyEntity", mappedBy="images")
     */
    protected $myentity;

    public function __construct($path = "")
    {
        $this->myentity = new \Doctrine\Common\Collections\ArrayCollection();
        $this->setPath($path);
    }

    /**
     * @ORM\PrePersist()
     * @ORM\PreUpdate()
     */
    public function preUpload()
    {
        $this->tempFile = $this->getAbsolutePath();
        $this->oldFile = $this->getPath();
        if(null !== $this->file)
        {
            $filename = sha1(uniqid(mt_rand(), true));
            $this->name = $filename.'.'.$this->file->guessExtension();
        }
    }

    /**
     * @ORM\PostPersist()
     * @ORM\PostUpdate()
     */
    public function upload()
    {
        if (null === $this->file)
            return;
        $this->preUpload($this->file);
        if(null !== $this->file)
        {
            $this->file->move($this->getUploadRootDir().$this->path, $this->name);
            unset($this->file);

            //if($this->oldFile != null)
            //     unlink($this->tempFile);    
        }
    }

    /**
     *  @ORM\PostLoad()
     */
    public function postLoad()
    {
        $this->updatedAt = new \DateTime('now');
    }

    /**
     * @ORM\PreRemove()
     */
    public function preRemoveUpload()
    {
        $this->tempFile = $this->getAbsolutePath();
    }

    /**
     * @ORM\PostRemove()
     */
    public function removeUpload()
    {
        // if($file = $this->getAbsolutePath())
        //     unlink($file);
        if(file_exists($this->tempFile))
            unlink($this->tempFile);
    }

    public function getWebPath()
    {
        return null === $this->path
            ? null
            : $this->getUploadDir().'/'.$this->path;
    }

    public function getAssetPath()
    {
        return $this->getUploadDir().$this->path;
    }

    /**
     * Called after entity persistence
     *
     * @ORM\PostPersist()
     * @ORM\PostUpdate()
     */

    protected function getUploadRootDir()
    {
        // the absolute directory path where uploaded
        // documents should be saved
        return __DIR__.'/../../../../web/'.$this->getUploadDir();
    }

    public function getAbsolutePath()
    {
        return null === $this->path ? null : $this->getUploadRootDir().$this->path;
    }

    protected function getUploadDir()
    {
        // get rid of the __DIR__ so it doesn't screw up
        // when displaying uploaded doc/image in the view.
        return 'uploads/';
    }

    /**
     * Get id
     *
     * @return integer 
     */
    public function getId()
    {
        return $this->id;
    }

    /**
     * Set name
     *
     * @param string $name
     * @return Documents
     */
    public function setName($name)
    {
        $this->name = $name;

        return $this;
    }

    /**
     * Get name
     *
     * @return string 
     */
    public function getName()
    {
        return $this->name;
    }

    /**
     * Set path
     *
     * @param string $path
     * @return Documents
     */
    public function setPath($path)
    {
        $this->path = $path;

        return $this;
    }

    /**
     * Get path
     *
     * @return string 
     */
    public function getPath()
    {
        return $this->path;
    }

    /**
     * Add myentity
     *
     * @param \My\Bundle\Entity\MyEntity $myentity
     * @return Documents
     */
    public function addMyentity(\My\Bundle\Entity\MyEntity $myentity)
    {
        $this->myentity[] = $myentity;

        return $this;
    }

    /**
     * Remove myentity
     *
     * @param \My\Bundle\Entity\MyEntity $myentity
     */
    public function removeMyentity(\My\Bundle\Entity\MyEntity $myentity)
    {
        $this->myentity->removeElement($myentity);
    }

    /**
     * Get myentity
     *
     * @return \Doctrine\Common\Collections\Collection 
     */
    public function getMyentity()
    {
        return $this->myentity;
    }

    /**
     * @return File
     */
    public function getFile()
    {
        return $this->file;
    }
}

MyEntityType.php

namespace My\Bundle\Form;

use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolverInterface;
use Doctrine\ORM\EntityRepository;

class MyEntityType extends AbstractType
{
    public function __construct()
    {
    }
    /**
     * @param FormBuilderInterface $builder
     * @param array $options
     */
    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $builder
            ->add('comp', "entity", array(
                "label"=>"Comp", 
                "class" => "MyBundle:Comp",
                "property" => "nameEn",
                "query_builder" => function(EntityRepository $er) {
                    return $er->createQueryBuilder("c")
                        ->orderBy("c.nameEn", "ASC");
                }))
            ->add('name', 'text')
            ->add('country', "entity", array(
                "label"=>"Country", 
                "class" => "CountryBundle:Country",
                "property" => "englishName",
                "query_builder" => function(EntityRepository $er) {
                    return $er->createQueryBuilder("p")
                        ->orderBy("p.englishName", "ASC");
                }))
            ->add('web', 'text', array("required" => false, "render_optional_text" => false))
            ->add('logo', new DocumentsType('logo_entity'), array('horizontal' => false, 'label' => 'Logo'))
        ;
    }

    /**
     * @param OptionsResolverInterface $resolver
     */
    public function setDefaultOptions(OptionsResolverInterface $resolver)
    {
        $resolver->setDefaults(array(
            'data_class' => 'My\Bundle\Entity\MyEntity'
        ));
    }

    /**
     * @return string
     */
    public function getName()
    {
        return '';
    }
}

DocumentsType.php

namespace My\Bundle\Form;

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

class DocumentsType extends AbstractType
{
    /**
     * @param FormBuilderInterface $builder
     * @param array $options
     */
    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $builder
            ->add('file', 'file', array('required' => false, 'label' => false))
        ;
    }

    /**
     * @param OptionsResolverInterface $resolver
     */
    public function setDefaultOptions(OptionsResolverInterface $resolver)
    {
        $resolver->setDefaults(array(
            'data_class' => 'My\Bundle\Entity\Documents'
        ));
    }

    /**
     * @return string
     */
    public function getName()
    {
        return 'documents';
    }
}

edit.html.twig

{% extends 'MyBundle::base.html.twig' %}

{% block stylesheets %}
    {{ parent() }}
{% endblock %}
{% block javascripts %}
    {{parent()}}
{% endblock %}
{% block wrapper %}
    {{parent()}}
    <h3>Edit</h3>
    {% for flashMessage in app.session.flashbag.get('notice') %}
        {{ flashMessage }}
    {% endfor %}
    <form action="{{ path(path_form, { 'id': entity.id, 'comp' : comp }) }}" method="POST" {{ form_enctype(edit_form) }}>
        {{ form(edit_form) }}
    </form>
{% endblock %}
  • 写回答

2条回答 默认 最新

  • douming4359 2015-10-15 09:44
    关注

    Well, I found (finally!) the solution for this problem.

    The UpdateAction from Controller has to check that if the form is sent a new file. If not, the entity has to setLogo (in my case) the actual logo that has in DB. If a new file exists and is valid, I create a new Documents object, and set the File with the file uploaded. Finally, I remove the previous logo from the server (this is optional).

    The code's updateAction:

    MyEntityController.php

    public function updateTeamAction(Request $request, $comp, $id) {
        $em = $this->getDoctrine()->getEntityManager();
        $entity = $em->getRepository('MyBundle:MyEntity')->find($id);
        if(!$entity)
            throw $this->createNotFoundException('Entity not found with id '. $id);
    
        $editForm = $this->createEditForm($entity);
        //Save original Logo
        $logoOriginal = $entity->getLogo();
        $editForm->handleRequest($request);
        if($editForm->isValid())
        {
            $files = $request->files;
            $uploadedFile = $files->get('logo')['file'];
            if(count($uploadedFile)==0)
                $entity->setLogo($logoOriginal);
            else
            {
                $documents = new Documents();
                $documents->setPath('logo');
                $documents->setFile($uploadedFile);
    
                $entity->setLogo($documents);
                if(!empty($logoOriginal))
                {
                    $fs = new Filesystem();
                    $fs->remove($documents->getAbsolutePath().'/'.$logoOriginal->getName());
                }
            }
            $em->persist($entity);
            $em->flush();
            $this->get('session')->getFlashBag()->add(
                'notice',
                'Edit success.'
            );
            return $this->redirect($this->generateUrl('ent_edit', array('comp' => $comp, 'id' => $id)));
        }
        return $this->render("MyBundle::edit.html.twig", array("entity"=> $entity, "comp" => $comp, "edit_form"=>$editForm->createView(), "path_form" => "ent_update"));
    }
    

    If you want the step to remove, add to controller this:

    use Symfony\Component\Filesystem\Filesystem;
    

    In the end, I realized I had a problem with the name of the new file created (was not the same that was stored in the DB that was created in the server folder). In Documents entity, I modified the upload() function, removing this line

    $this->preUpload($this->file);

    So, the final code of upload() function is the next:

    Documents.php

    /**
     * @ORM\PostPersist()
     * @ORM\PostUpdate()
     */
    public function upload()
    {
        if (null === $this->file)
            return;
        if(null !== $this->file)
        {
            $this->file->move($this->getUploadRootDir().$this->path, $this->name);
            unset($this->file);
            //if($this->oldFile != null)
            //     unlink($this->tempFile);    
        }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵