Article我和实体之间有一对多关系Image。我创建了文章的形式,如下所示:
class ArticleType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('articleTitle','text',array('required' => false))
->add('articlePrice','number',array('required' => false))
->add('images', new ImageType())
;
}
....
}
Run Code Online (Sandbox Code Playgroud)
和
class ImageType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('file', 'file',array('required' => false))
;
}
....
}
Run Code Online (Sandbox Code Playgroud)
我在验证文件属性时遇到问题。我的目标是当用户选择任何文件时返回错误消息(至少一个图像应与文章相关联)。我尝试断言NotBlank但它不起作用。
<?php
....
use Symfony\Component\Validator\Constraints as Assert;
class Image
{
/**
* Image file
*
* @var File
* @Assert\NotBlank
*/
private $file;
....
}
Run Code Online (Sandbox Code Playgroud)
我在创建表单时不会嵌入集合,因为项目要求要求在提交整个表单之前分别对每个图像进行 AJAX 上传。换句话说,绑定到输入change事件的 JavaScript 事件侦听器创建 AJAX 调用,该调用在验证后上传图像(即在控制器中验证文件的大小、扩展名)。但是,当我发送整个表单时,即使没有选择文件,也只会验证其他字段并提交表单(我在标题中看到除文件外的所有 formData 元素)。
我想注意到,当我检查浏览器中的元素时,表单会正确呈现。
我花了很多时间试图解决这个问题,但无济于事,你的帮助就是救援。
编辑:根据 Nawfal Serrar 先生的要求
AJAX 调用的执行方式如下:
$(':file').change(function(){
var file = this.files[0];
var url= $('.article-form').attr('data-iu-url');
var formData = new FormData($('form')[0]);
$.ajax({
url: url,
type: 'POST',
success: completeHandler,
data: formData,
});
});
Run Code Online (Sandbox Code Playgroud)
url包含遵循以下配置的路由image_upload:
image_upload:
pattern: /{id}/image_upload
defaults: { _controller: ShopManagementBundle:Image:uploads}
requirements: { _method: post|put }
Run Code Online (Sandbox Code Playgroud)
控制器:
public function uploadsAction(Request $request, $id) {
if ($request->isMethod('POST')) {
$image = $request->files->get('articletype')['images']['file'];
$status='success';
$message='';
$uploadedURL='';
$the_id=0;
if (($image instanceof UploadedFile) && ($image->getError() == 0)) {
if ($image->getSize() < 50000000000) {
$originalName = $image->getClientOriginalName();
$name_array = explode('.', $originalName);
$extension = $name_array[sizeof($name_array) - 1];
$valid_file_types = array('jpeg', 'jpg', 'bmp', 'png', 'gif');
if (in_array(strtolower($extension), $valid_file_types)) {
$imagee= new Image();
$em = $this->getDoctrine()->getManager();
$imagee->setFile($image);
$imagee->setSubDir('hg');
$imagee->upload();
$entity = $em->getRepository('ShopManagementBundle:Article')->find($id);
$imagee->setAricle($entity);
$uploadedURL= $imagee->getUploadDir(). DIRECTORY_SEPARATOR . $imagee->getSubDir(). DIRECTORY_SEPARATOR . $image->getBasename();
$em->persist($entity);
$em->persist($imagee);
$em->flush();
$the_id=$imagee->getId();
} else {
$status = "fail";
$message = "extension problem";
}
} else {
$status = "fail";
$message = "Image size too big";
}
} else {
$status = "fail";
$message = "Error uploading";
}
return $this->render('ShopManagementBundle:Image:image_portion.html.twig', array(
'status' => $status,
'message' => $message,
'uploadedURL' => $uploadedURL,
'image_id'=>$the_id,
));
}
else
return new Response('RE try uploading');
}
Run Code Online (Sandbox Code Playgroud)
正如您所看到的,我没有isValid在控制器中使用验证,我使用 if-else 语句进行验证,假设文件已经发送。
毕竟我们在评论区说了这么多,我还是推荐你使用@Assert\File来进行文件上传验证。它会阻止你的 if/else 堆栈。
既然您告诉我您要将上传的文件附加到已有的文章中,那么使用嵌入式表单集合将是我提到的解决方案。
由于您将检索该文章,然后用它创建一个表单类型,因此所有图像都将链接到它。
在您的图像列表中添加计数约束:
/**
* @Assert\Count(
* min = "1",
* minMessage = "You must upload at least one image",
* )
*/
private $images;
Run Code Online (Sandbox Code Playgroud)
由于您将检索已链接到上传的图像实例的文章,因此验证不会抛出错误。否则,用户将尝试提交不带图像的表单。验证约束将使表单无效。
可能还需要做其他一些小事情才能使其发挥作用,但它应该可以帮助您继续前进。
| 归档时间: |
|
| 查看次数: |
2202 次 |
| 最近记录: |