6
Symfony2でファイルをアップロードしてから、すべてが変更されているようですが、How to handle File Uploads with Doctrineのガイドに従っていますが、古いものではありません。Symfony 2.2のアップロードファイル
は、私は、フォームをバインドしようとするとエラーが出る
Catchable Fatal Error: Argument 1 passed to Entity\Portada::setFile() must be an instance of Symfony\Component\HttpFoundation\File\UploadedFile, string given, ...
これは私のコントローラ
/**
* @Route("/upload", name="documento_upload")
* @Method("POST")
* @Template()
*/
public function uploadAction(Request $request)
{
$portada = new Portada();
$form = $this->buildUploadForm($portada);
$form->bind($request);
if ($form->isValid()) {
$portada->upload();
} else {
throw new \Exception("Hay un error en el formulario");
}
//...
}
私の実体である
<?php
namespace MyName\MyBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\HttpFoundation\File\UploadedFile;
use Symfony\Component\Validator\Constraints as Assert;
class Portada
{
/**
* @Assert\File(maxSize="6000000")
*/
private $file;
public $path;
/**
* Sets file.
*
* @param UploadedFile $file
*/
public function setFile(UploadedFile $file = null)
{
$this->file = $file;
}
public function upload()
{
$this->path = $this->getFile()->getClientOriginalName();
$this->getFile()->move(
$this->getUploadRootDir(),
$this->path
);
$this->file = null;
}
/**
* Get file.
*
* @return UploadedFile
*/
public function getFile()
{
return $this->file;
}
public function getAbsolutePath()
{
return null === $this->path
? null
: $this->getUploadRootDir() . DIRECTORY_SEPARATOR . $this->path;
}
public function getWebPath()
{
return null === $this->path
? null
: $this->getUploadDir() . DIRECTORY_SEPARATOR . $this->path;
}
protected function getUploadRootDir()
{
return __DIR__ . '/../../../../web/'. $this->getUploadDir();
}
protected function getUploadDir()
{
return 'uploads/portada';
}
}
+1 aaaaahhhhh ....ありがとう:) –
フォームビルダーなしでこれを行うことは可能ですか? – Gigala
@Gigalaそれは可能ですが、私は試してみません。 FileBagを返す '$ this-> getRequest() - > files'をチェックしてください。あなたは' 'input type =" file "name =" file ">'のようにしていれば、どのように移動するのかチェックすることができます。 – rkmax