Symfony2如何上传文件Product-> getPicture()对新记录返回null

时间:2016-08-24 06:48:37

标签: symfony doctrine vichuploaderbundle

我尝试使用Symfony2捆绑包VichUploaderBundle。当我使用保存在数据库中的记录并请求Product->getPicture()时,我收到上传的文件信息。但是当我尝试创建它时

$product = new Product();
$product->getPicture()

我得到null对象,无法上传文件。 我的产品类。

/**
 * @ORM\Entity(repositoryClass="CreLabs\Bundle\ProductBundle\Entity\ProductRepository")
 * @ORM\Table(name="product")
 */
class Product {

    use ORMBehaviors\Translatable\Translatable;

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

    /**
     * @ORM\Column(type="string", length=20, nullable=true)
     */
    protected $sku;

    /**
     * @ORM\Column(type="float", scale=2)
     */
    protected $price;

    /**
     * @ORM\Column(type="float", scale=2, nullable=true)
     */
    protected $msrp_price;

    /**
     * @ORM\Column(type="string", nullable=true)
     * @Assert\File(mimeTypes={ "image/jpeg" })
     */
    protected $picture;

    /**
     * @ManyToOne(targetEntity="\CreLabs\Bundle\SettingBundle\Entity\Category", inversedBy="products")
     * @JoinColumn(name="category_id", referencedColumnName="id", onDelete="cascade")
     * @Assert\NotNull()
     */
    protected $category;

    /**
     * @ManyToOne(targetEntity="\CreLabs\Bundle\SettingBundle\Entity\Manufacturer", inversedBy="products")
     * @JoinColumn(name="manufacturer_id", referencedColumnName="id", onDelete="cascade")
     * @Assert\NotNull()
     */
    protected $manufacturer;

    /**
     * @ORM\Column(type="datetime", nullable=false)
     */
    protected $created_at;

    /**
     * @ORM\Column(type="datetime", nullable=true)
     */
    protected $updated_at;

我如何尝试在新纪录上使用

$entityManager = $this->getEntityManager();
$product = new Product();

        $file = $product->getPicture();
        $fileName = md5(uniqid()).'.'.$file->guessExtension();
        $file->move(
            $productDirectory,
            $fileName
        );
$product->setPicture($fileName);

guessExtension上的例外

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

发现问题

  h4 {
    display: inline-block;
  }

现在文件可以上传,也可以在创建新记录时