我想知道如何在不使用集合字段类型的情况下创建多个文件上传。问题是:我有一门课,我需要在这门课上链接图像。我不需要这些图像中的任何描述和其他类型的信息,所以我只需在我的主要实体中创建附加字段。然后我添加
->add('files', 'file', array(
'label' => 'Images',
'required' => false,
'attr' => array(
'accept' => 'image/*',
'multiple' => true
)
在它的表单类中,这个:
/**
* @ORM\PrePersist()
* @ORM\PreUpdate()
*/
public function preUpload()
{
if (!empty($this->files)) {
if (!empty($this->images)) {
$this->insertingKey = $this->images->count();
}
foreach ($this->files as $file) {
$imageName = uniqid('entity_') . '_' . date('Y-m-d_H:i') . '.' . $file->guessExtension();
if ($this->images === null) {
$this->images = new ArrayCollection();
}
$this->images->add($imageName);
}
}
}
/**
* @ORM\PostPersist()
* @ORM\PostUpdate()
*/
public function upload()
{
if (empty($this->files)) {
return;
}
if ($this->insertingKey) {
foreach ($this->files as $file) {
$file->move($this->getUploadRootDir(), $this->images[ $this->insertingKey++ ]);
}
} else {
foreach ($this->files as $key => $file) {
$file->move($this->getUploadRootDir(), $this->images[ $key ]);
}
}
}
作为我的实体类中的学说事件,当然我使文件归档像数组一样工作。但我的问题是 - 我不能第二次添加图像。例如,当我已经上传了一些图像并决定再上传一些图像时 - 他们实际上传(我可以在我的项目目录中看到它们),但我的页面上没有任何变化。
你能给我一些建议吗?或者也许有一些其他方法可以上传许多文件并且同时只有一个表单域?太谢谢了。