douzen1880 2016-06-02 13:42
浏览 59
已采纳

Symfony / VichUploaderBundle:删除实体

I'm using the VichUploader to manage File Uploads in my Symfony 3 Application. Now I wonder how to manage deleting Files/ Entities?

Excerpt of the app/config/config.yml:

vich_uploader:
    db_driver: orm
    mappings:
        upload_artists:
            uri_prefix:         /upload/artists
            upload_destination: %kernel.root_dir%/../web/upload/artists
            directory_namer:    artist_directory_namer
            namer:              vich_uploader.namer_uniqid
            inject_on_load:     false
            delete_on_update:   true
            delete_on_remove:   true

Excerpt of the Entity:

use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Validator\Constraints as Assert;
use Symfony\Component\HttpFoundation\File\File;
use Vich\UploaderBundle\Mapping\Annotation as Vich;

/**
 * @ORM\Entity
 * @ORM\Table(name="image_file")
 * @Vich\Uploadable 
 */
class ImageFile {

    /**
     * @ORM\Id
     * @ORM\Column(type="integer")
     * @ORM\GeneratedValue(strategy="AUTO")
     */
    private $id;

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

    /**
     * NOTE: This is not a mapped field of entity metadata, just a simple property.
     * 
     * @Vich\UploadableField(mapping="upload_artists", fileNameProperty="imageName")
     * 
     * @var File
     */
    private $imageFile;

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

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

    /** 
     * @ORM\ManyToOne(targetEntity="Artist") 
     * @ORM\JoinColumn(name="artist_id", referencedColumnName="id") 
     */ 
    private $artist;

    /**
     * @ORM\Column(type="boolean")
     */
    private $deleted;

Excerpt of the Controller:

namespace Acme\Bundle\Controller;

use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Acme\Bundle\Entity\Artist;
use Acme\Bundle\Entity\ImageFile;

class ArtistPhotoController extends Controller {

    // ...

    public function deleteDisabledAction($id = null) {
        $artist = $this->getDoctrine()
            ->getRepository('Bundle:Artist')
            ->find($id)
        ;
        $repository = $this->getDoctrine()->getRepository('Bundle:ImageFile');
        $photosDisabled = $repository->findBy(array('artist' => $artist, 'application' => $this->application, 'deleted' => 1), array('updatedAt' => 'DESC'));
        $counter = 0;

        foreach ($photosDisabled as $disabled) {
            if($disabled->remove()) {
                $counter++;
            }
        }

        if ($counter > 0) {
            $this->addFlash(
                'success',
                $counter.' items successfully deleted!'
            );
        }
    }
}

... '$disabled->remove()' was just a test and results in an error message ("undefined method named remove"). How's the correct method to remove/ delete a file/ an entity managed by the VichUploader? Any hints? Thanks in advance!

  • 写回答

2条回答 默认 最新

  • douduandiao1368 2016-06-02 13:48
    关注

    You aren't removing them properly. The basic commands to remove an entity is;

    $em = $this->getDoctrine()->getEntityManager();
    $em->remove($myEntityObj);
    $em->flush();
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?