gpt4 book ai didi

php - 在 Symfony2 中使用 Form Collections 和 Doctrine 上传图片

转载 作者:可可西里 更新时间:2023-11-01 12:53:29 29 4
gpt4 key购买 nike

我一直在尝试使用 Symfony2 中的文件上传制作一个表单集合并遵循本指南

http://symfony.com/doc/master/cookbook/form/form_collections.html

但似乎无法使这部分工作:

// src/Acme/TaskBundle/Entity/Task.php

// ...

public function setTags(ArrayCollection $tags)
{
foreach ($tags as $tag) {
$tag->addTask($this);
}

$this->tags = $tags;
}

.基本上,我有一个属性实体和一个具有一对多关系的图像实体。我已经使它们的每个 FormType 和 Property Entity 保持得很好,另一方面,Image 实体的 property_id 列总是为 NULL,即使 Image 实体的其他属性得到了正确的保持。

这是属性实体:

<?php

namespace Mata\MainBundle\Entity;

use Doctrine\ORM\Mapping as ORM;
use Doctrine\Common\Collections\ArrayCollection;

use Mata\MainBundle\Entity\Image;


class Property
{
/**
* @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;

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

/**
* @var float
*
* @ORM\Column(name="price", type="float")
*/
private $price;

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

/**
* @var integer
*
* @ORM\Column(name="owner", type="integer")
*/
private $owner;

/**
* @var boolean
*
* @ORM\Column(name="available", type="boolean")
*/
private $available;

/**
*
*
* @ORM\OneToMany(targetEntity="Image", mappedBy="property", cascade={"persist"})
*/
private $images;

public function __construct()
{
$this->images = new ArrayCollection();
}

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

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

return $this;
}

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

/**
* Set description
*
* @param string $description
* @return Property
*/
public function setDescription($description)
{
$this->description = $description;

return $this;
}

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

/**
* Set price
*
* @param float $price
* @return Property
*/
public function setPrice($price)
{
$this->price = $price;

return $this;
}

/**
* Get price
*
* @return float
*/
public function getPrice()
{
return $this->price;
}

/**
* Set type
*
* @param string $type
* @return Property
*/
public function setType($type)
{
$this->type = $type;

return $this;
}

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

/**
* Set owner
*
* @param integer $owner
* @return Property
*/
public function setOwner($owner)
{
$this->owner = $owner;

return $this;
}

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

/**
* Set available
*
* @param boolean $available
* @return Property
*/
public function setAvailable($available)
{
$this->available = $available;

return $this;
}

/**
* Get available
*
* @return boolean
*/
public function getAvailable()
{
return $this->available;
}

/**
* Add images
*
* @param \Mata\MainBundle\Entity\Image $images
* @return Property
*/
public function addImage(\Mata\MainBundle\Entity\Image $images)
{
$this->images[] = $images;

return $this;
}

public function setImages(ArrayCollection $images)
{
foreach ($images as $image) {
$image->setProperty($this);
}

$this->images = $images;
}

/**
* Remove images
*
* @param \Mata\MainBundle\Entity\Image $images
*/
public function removeImage(\Mata\MainBundle\Entity\Image $images)
{
$this->images->removeElement($images);
}

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

图像实体:

namespace Mata\MainBundle\Entity;

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

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

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

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

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


/**
* @ORM\ManyToOne(targetEntity="Property", inversedBy="images")
* @ORM\JoinColumn(name="property_id", referencedColumnName="id")
*/
protected $property;



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

/**
* Set name
*
* @param string $name
* @return Image
*/
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 Image
*/
public function setPath($path)
{
$this->path = $path;

return $this;
}



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

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

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

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

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

/**
* @ORM\PrePersist()
* @ORM\PreUpdate()
*/
public function preUpload()
{
if (null !== $this->file) {
// do whatever you want to generate a unique name
$filename = sha1(uniqid(mt_rand(), true));
$this->path = $filename.'.'.$this->file->guessExtension();
}
}

/**
* @ORM\PostPersist()
* @ORM\PostUpdate()
*/
public function upload()
{
if (null === $this->file) {
return;
}

// if there is an error when moving the file, an exception will
// be automatically thrown by move(). This will properly prevent
// the entity from being persisted to the database on error
$this->file->move($this->getUploadRootDir(), $this->path);

unset($this->file);
}

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

/**
* Set property
*
* @param \Mata\MainBundle\Entity\Property $property
* @return Image
*/
public function setProperty(\Mata\MainBundle\Entity\Property $property)
{
$this->property = $property;

return $this;
}

/**
* Get property
*
* @return \Mata\MainBundle\Entity\Property
*/
public function getProperty()
{
return $this->property;
}
}

属性(property)形式类型:

namespace Mata\AdminBundle\Form\Type;


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

use Mata\AdminBundle\Form\Type\ImageType;

class PropertyType extends AbstractType
{


public function buildForm(FormBuilderInterface $builder, array $options)
{

$builder->add('name');
$builder->add('description');
$builder->add('price');
$builder->add('type');
$builder->add('owner');
$builder->add('available');
$builder->add('images', 'collection', array(
'type' => new ImageType(),
'allow_add' => true,
'by_reference' => false,
'allow_delete' => true,
'prototype' => true

));

}

public function setDefaultOptions(OptionsResolverInterface $resolver)
{
$resolver->setDefaults(array(
'data_class' => 'Mata\MainBundle\Entity\Property',
));
}

public function getName()
{
return 'property';
}
}

图像格式类型:

namespace Mata\AdminBundle\Form\Type;


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


class ImageType extends AbstractType
{

public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder->add('name','text');
$builder->add('file', 'file');

}

public function setDefaultOptions(OptionsResolverInterface $resolver)
{
$resolver->setDefaults(array(
'data_class' => 'Mata\MainBundle\Entity\Image',
));
}

public function getName()
{
return 'images';
}
}

Controller Action :

public function addAction(Request $request)
{

$em = $this->getDoctrine()->getManager();
$property = new Property();

$form = $this->createForm(new PropertyType(), $property);

if ($request->isMethod('POST')) {
$form->bind($request);

if ($form->isValid()) {
$em->persist($property);
$em->flush();

$this->get('session')->getFlashBag()->add('notice', 'Successfully added new Property');

return $this->redirect($this->generateUrl('mata_admin.property.create'));
}
}

return $this->render('MataAdminBundle:Property:add.html.twig',array(
'title' => 'Property',
'form' => $form->createView()
)
);
}

最佳答案

当您添加 by_reference => false 时,您应该在添加函数中设置计数器实体。

因此您的 property_id 应该正确地保留在图像中,将您属性中的 addImage 函数更改为:

public function addImage(\Mata\MainBundle\Entity\Image $image)
{
$this->images[] = $image;

$image->setProperty($this);

return $this;
}

关于php - 在 Symfony2 中使用 Form Collections 和 Doctrine 上传图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14175463/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com