我的收藏表单类型没什么问题。
我有一对多的关系(产品和产品图像)
我认为问题出在我的productImages实体(如果可以解决)
我的产品图片:
class produktImage
{
/**
* @var integer
*
* @ORM\Column(name="id", type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
private $id;
/**
* @ORM\Column(name="name", type="string", length=255)
*/
private $name;
/**
* @Assert\File(maxSize="6000000")
*/
public $file;
/**
* @ORM\ManyToOne(targetEntity="product", inversedBy="tags")
*/
protected $product;
和最重要的方法:
public function upload()
{
$this->name = trim(date("dmyGis").rand(1,99999999).'_'.$this->file->getClientOriginalName());
$this->file->move($this->getUploadRootDir(), $this->name);
$move = new resizeImg(1280, 3000, $this->name, $this->getUploadRootDir(), null);
$move->setThumbial(550, 2000, $this->getUploadRootDir().'../small/', null);
$move->setThumbial(200, 2000, $this->getUploadRootDir().'../thumb/', null);
$this->file = null;
}
表单productImage仅包含文件字段。
我的产品实体(最重要的方法)
public function addPhotosum($photos)
{
$photos->setProdukt($this);
$photos->upload($this);
$this->photos->add($photos);
return $this;
}
public function removePhotosum($photos)
{
$this->photos->removeElement($photos);
$photos->removeImg();
}
好的,但问题出在哪里。 当我尝试添加或删除文件时,一切正常。 如果我尝试编辑文件没有任何反应。名称和文件无法更改。
我认为这是因为产品没有看到名称的变化(名称仅存储在数据库中)但我不知道如何告诉他"更改名称和文件时文件是不同势&#34 ;. 我可以使用preUpdate或其他吗? 有人有类似的问题吗?
答案 0 :(得分:0)
只需在控制器的编辑操作中调用upload()方法即可。
示例:
public function editAction(Request $request, $id)
{
$em = $this->getDoctrine()->getManager();
$entity = $em->getRepository('YourBundle:YourEntity')->find($id);
if (!$entity) {
throw $this->createNotFoundException('Unable to find Your entity.');
}
$editForm = $this->createEditForm($entity);
$editForm->handleRequest($request);
if ($editForm->isValid()) {
$entity->upload()
$entity->persist($entity);
$em->flush();
return $this->redirect($this->generateUrl('your_destination_route', array('id' => $id)));
}
return array(
'entity' => $entity,
'edit_form' => $editForm->createView(),
);
}
我希望它对你有用..