我正在使用Symfony 3.2。*
在网页中正确选择文件,当我转储$ request,文件名及其大小出现时,但文件没有放在我的项目的文件夹中,我如何在我的控制器中使用得到这个(我的意思是文件内容)?
在我的实体中:
/**
* NOTE: This is not a mapped field of entity metadata, just a simple property.
*
* @Vich\UploadableField(mapping="product_image", fileNameProperty="imageName", size="imageSize")
*
* @var File
*/
private $imageFile;
/**
* @ORM\Column(type="string", length=255)
*
* @var string
*/
private $imageName;
在我看来:
<form class="form-horizontal" action="{{ path('thepouk_admin_gestion_themes_enreg_publier') }}" method="post" enctype="multipart/form-data">
<div class="form-group">
<label class="col-md-4 control-label" for="filebutton">Image</label>
<div class="col-md-4">
<input id="filebutton" name="image" class="input-file" type="file">
</div>
</div>
<button id="singlebutton" name="nouveau_publier" class="btn btn-success"> ADD </button>
</form>
&#13;
在我的config.yml中:
vich_uploader:
db_driver: orm
mappings:
product_image:
uri_prefix: /images/products
upload_destination: '%kernel.root_dir%/../web/images/products'
inject_on_load: false
delete_on_update: true
delete_on_remove: true
&#13;
在我的控制器中
public function saveNewThingAction(Request $request){
$th = new Thing();
$theme->setImageFile($request->request->get('image'));
$theme->setImageName($request->request->get('image'));
$em = $this->getDoctrine()->getManager();
$em->persist($th);
$em->flush();
return $this->render('PRBundle:Things:new.html.twig');
}
&#13;
答案 0 :(得分:0)
由于您只发布了实体类的部分内容,这只是猜测。您是否已将Uploadable
注释添加到实体中?
请参阅documentation:
首先,使用Uploadable注释注释您的类。这实际上就像一个标志,表明该实体包含可上传的字段。
e.g。
<?php
namespace Acme\DemoBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\HttpFoundation\File\File;
use Vich\UploaderBundle\Mapping\Annotation as Vich;
/**
* @ORM\Entity
* @Vich\Uploadable
*/
class Product
{
...
}
答案 1 :(得分:0)
您可以使用files方法触摸请求对象。
$request->files->get('fileFieldName');