我有一个图像实体:
class Image {
/**
* @ORM\Id
* @ORM\Column(type="integer")
* @ORM\GeneratedValue(strategy="AUTO")
*/
protected $id;
/**
* @ORM\Column(type="string", nullable=true)
*/
protected $location;
/**
* @Assert\File(maxSize="6000000")
*/
protected $file;
public function __toString()
{
return $this->getLocation()
}
//............
}
我想允许用户删除选择的图像并删除它们。我做了一个ImageSelectType:
class ImageSelectType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add(PROBLEM_IS_HERE, 'entity', array(
'class' => 'BloggerBlogBundle:Image',
)
)
;
}
//.......
}
但是,我似乎无法准确理解实体类型是如何工作的。如果我将 'location' 或某些属性作为$builder->add函数的第一个参数,我会得到以下示例:
object(Blogger\BlogBundle\Entity\Image)[316]
protected 'id' => null
protected 'location' =>
object(Blogger\BlogBundle\Entity\Image)[79]
protected 'id' => int 16
protected 'location' => string '8a307aadd466f1b92b149d3f79069f5a1abc9cd3.png' (length=44)
protected 'file' => null
protected 'file' => null
所以它实际上将整个对象放入空 Image 对象的 Location 属性中。如果我将 'id' 作为第一个参数,我会得到完全相同的结果,只是对象将存储在 $image->id 中。我应该输入什么作为 $builder-add 的第一个参数来实际接收对象本身?
如果相关,这是我的操作代码:
public function imageDeleteAction()
{
$image = new Image();
$request = $this->getRequest();
$em = $this->getDoctrine()->getEntityManager();
$form = $this->createForm(new ImageSelectType(), $image);
$form->bindRequest($request);
var_dump($image);
exit;
}