Symfony表单不向控制器发送文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Symfony表单不向控制器发送文件相关的知识,希望对你有一定的参考价值。
您好,我是symfony的新人,我必须和他一起制作CRUD产品。我必须将此信息发送到数据库:
- 标题(字符串,必填,最小长度:6);
- 描述(文字,最大长度:4000)
- image(blob,required,max filesize:5mb,仅限类型:JPG,PNG,GIF);
- stock(int,required);
问题:
- 大小超过1mb的文件不按表格发送;
注意:
- 如果文件有1mb或更少,表单正确发送它们。
我的实体:
/**
* @ORMEntity(repositoryClass="AppRepositoryProductRepository")
*/
class Product {
/**
* @ORMId()
* @ORMGeneratedValue()
* @ORMColumn(type="integer")
*/
private $id;
/**
* @ORMColumn(type="string", length=255)
*/
private $title;
/**
* @ORMColumn(type="text", length=4000, nullable=true)
*/
private $description;
/**
* @ORMColumn(type="blob")
*/
private $image;
/**
* @ORMColumn(type="integer")
*/
private $stock;
我的表格由以下方式生成:
$product = new Product();
$form = $this->createFormBuilder($product)
->add('title',TextType::class, [
'required' => true,
'label' => 'Titulo: ',
'attr' => ['minlength' => 6, 'id' => 'title_product'],
])
->add('description', TextareaType::class,[
'required' => false,
'label' => 'Descrição: ',
'attr' => ['maxlength' => 4000, 'id' => 'description_product'],
])
->add('image', FileType::class, [
'required' => true,
'attr' => ['accept' => 'image/jpeg, image/png, image/gif'],
'label' => 'Imagem do produto(JPG, PNG ou GIF): ',
'help' => 'A imagem deve ter um peso maximo de 5 MBs.',
])
->add('stock', IntegerType::class, [
'required' => true,
'label' => 'Quantidade em estoque: ',
])
->add('save', SubmitType::class, [
'label' => 'Criar Produto',
'attr' => ['class' => 'btn btn-success']
])
->getForm();
$form->handleRequest($request);
if ($form->isSubmitted() && $form->isValid()) {
$product = $form->getData();
if ($this->validateFormProduct($product)){
$this->createProduct($product);
return $this->redirectToRoute('index_products');
}
}
return $this->render('product/new.html.twig', [
'form' => $form->createView()
]);
验证功能:
private function invalidImageType($img) {
$permitedTypes = array(IMAGETYPE_JPEG, IMAGETYPE_PNG, IMAGETYPE_GIF);
$detectedType= exif_imagetype($img);
return !in_array($detectedType, $permitedTypes);
}
private function invalidImageSize($img) {
return filesize($img) > 5000000;
}
private function validateFormProduct($form){
if ($this->invalidImageType($form->getImage())){
$this->addFlash(
'warning',
'Tipo de imagem invalido!'
);
return false;
}
if ($this->invalidImageSize($form->getImage())){
$this->addFlash(
'warning',
'Este arquivo excede o tamanho maximo de 5mb!'
);
return false;
}
return true;
}
功能加密:
private function encriptImage($img) {
$normalizer = new DataUriNormalizer();
return $normalizer->normalize(new SplFileObject($img));
}
答案
您需要在php.ini
配置文件中增加最大上载大小。
upload_max_filesize
和post_max_size
确保第二个大于或等于第一个。
另一答案
您需要在php.ini中更新upload_max_filesize和post_max_size的值:(配置文件)
; Maximum allowed size for uploaded files.
upload_max_filesize = 1M
; Must be greater than or equal to upload_max_filesize
post_max_size = 1M
请参阅说明php.ini。
以上是关于Symfony表单不向控制器发送文件的主要内容,如果未能解决你的问题,请参考以下文章
使用Ajax(无表单)将POST数据以JSON格式发送到Symfony2 Controller