1

我已经按照这个添加了上传文件的功能,但是我有一个小问题。我实际上复制了该部分的功能Using Lifecycle Callbacks。而不是 class Document,我有一个类Friend

//...
/**
     * @Assert\File(maxSize="6000000")
     */
    public $picture;

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

上传和编辑工作,但我在删除时遇到问题。我想有两个选项 - Remove the picture并且Delete the picture- 第一个将仅设置当前路径,null并且文件将保留在存储文件的文件夹中,而第二个将设置为路径null并删除文件。

坏消息是我无法走上这条路null。文件被删除,但路径仍然存在。

这是文档中的功能:

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

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

这是我的控制器中的操作:

public function removePictureAction($id)
    {
        $em = $this->getDoctrine()->getEntityManager(); 
         $friend = $em->getRepository('EMMyFriendsBundle:Friend')->find($id);
         $friend->removeUpload();
         $var=null;
         $friend->setPath($var);
         return $this->redirect($this->generateUrl('friend_id', array('id' => $id))); 
    }

但路径仍然存在......如何删除它并再次将其设置为空?

4

1 回答 1

1

您需要保留您的朋友实体并刷新实体管理器

于 2012-08-30T12:04:21.147 回答