file - Symfony2 简单文件上传编辑,无实体

标签 file symfony file-upload doctrine-orm edit

请帮助我,因为我不敢相信自己的眼睛。

我拒绝使用某些第三方插件进行文件上传,并拒绝为文件/文档创建单独的实体。我只想在 Zend/Laravel 等中进行简单的文件上传。

我有一个发票表,最后一个列名称为“attachment”,我想在此处存储其清理后的名称(例如: 123421_filename.jpg ),添加表单和上传顺利。

代码在这里:

//AddAction
     $file=$form['attachment']->getData();
        $fileName=$file->getClientOriginalName();
        $sanitizedFilename=rand(1, 99999).'_'.$fileName;
        $dir='files/'.$userId.'/';
        $file->move($dir, $sanitizedFilename);
    ...
        $invoice->setAttachment($sanitizedFilename);
        $em = $this->getDoctrine()->getManager();
        $em->persist($invoice);

我遇到但不知道如何解决的第一个问题是使用编辑表单。我有一个表单生成器

   $builder->add('attachment', 'file',array('data_class'=>null))

因为我的文件没有“对象”,并且因为在我的发票表中我将名称存储为字符串,所以我在这里收到错误,我需要强制 data_class => null .. 这很糟糕,因为如果我在上传字段的前端编辑发票,我会得到 NULL,而不是链接到发票的当前文件的文件名。

与:

$builder->add('attachment', 'text')

我没有得到文件输入只是一个愚蠢的文本框,但这一次——其中包含名称——..那么我该如何解决这个问题?文件输入小部件和其中的文件名,没有 Document 对象?!

第二个问题(我只是打算扔掉迄今为止开发的所有应用程序并转向 Laravel,因为我遇到了很多“此类问题”..在 symfony 中做简单的事情几乎总是更多比其他框架复杂..或者也许是我的错,我不想遵循指南并创建文档实体?!如果我想要灵 active 并且想要以另一种不适合所有情况的方式管理我的数据库怎么办?这些准则?)

所以我正在进行编辑表单操作,上传一个新文件(不要忘记我已将文件设置为 $builder->add('attachment',file',array('data_class'=>null ))

我无法从我正在编辑的当前发票中获取附件字符串名称? !

public function editAction($id)
   ....
   $invoice = $em->getRepository('AppBundle:Invoice')->find($id);
   ..
    if ($form->isValid()) {

            $oldFileName=$invoice->getAttachment();  //this is null
            $oldFileName=$invoice->getId();   //this returns the invoice id
            $oldFileName=$invoice->getValue(); //returns invoice value

                echo 'old: '.$oldFileName.'<br/>';
                exit();
     }

所以请有人告诉我为什么我无法访问我的发票属性?哪个是字符串?

我尝试创建一个新实例,但不知何故,如果我使用 $invoice 对象创建表单,它会以某种方式将他链接到编辑表单中的附件

 if ($form->isValid()) {
    $sameInvoice= $em->getRepository('AppBundle:Invoice')->find(20); //hardcoded ID

                   $oldFileName=$sameInvoice->getAttachment();   //still null
                   $oldFileName=$sameInvoice->getId();   //returns 20
                    echo 'old: '.$oldFileName.'<br/>';
                    exit();

我唯一想要的是,在我的发票表中有一个文件名字符串,并测试自己是否存在于具有该文件名的路径中,如果存在,则将其删除并上传新文件,依此类推。为什么一定要这么难?

为什么我必须创建一个实体?为什么我必须改变我的数据库结构(这里不是这种情况..但是如果客户端不希望更改数据库怎么办..所以我无法插入这个“文档”表)..为什么可以'表单生成器显示来自发票->附件的数据,我明白是因为他需要文件数据并且他不能接受字符串,但为什么没有这些简单任务的指南?!

enter image description here

最佳答案

好吧,我终于成功了:

所以它为什么是 NULL 的问题是因为它确实将 $invoice 实例绑定(bind)到了表单:

$invoice = $em->getRepository('AppBundle:Invoice')->find($id);
$form = $this->createForm(new InvoiceType($id), $invoice);

在这段代码之后,所有引用如:$invoice->getAttachment();

被称为表单发票对象而不是实际对象,所以基本上在此之后我只能调用诸如“getClientOriginalName()”之类的东西,并会向我显示我在编辑表单中上传的新文件。

为了解决这个问题,我创建了一个变量,该变量最初在 $invoice 对象之前存储该名称以绑定(bind)到表单

    $invoice = $em->getRepository('AppBundle:Invoice')->find($id);
    $oldFileName=$invoice->getAttachment();  //this is stil the object here I can see the record from the database
    $form = $this->createForm(new InvoiceType($id), $invoice);
  //here the $invoice->getAttachment(); returns null

现在我有了旧名称,我可以像这样测试它:

 if ($form->isValid()) {

                $fs=new Filesystem();
                $newFile=$form['attachment']->getData();
                $newFileName=$newFile->getClientOriginalName();

                if($newFileName != $oldFileName)
                {
                  //  if($fs->exists('files/'.$this->getUser()->getId().'/'.$oldFileName))
                  //      $fs->remove('files/'.$this->getUser()->getId().'/'.$oldFileName);

                    $sanitizedFilename=rand(1, 99999).'_'.$newFileName;
                    $dir='files/'.$this->getUser()->getId().'/';
                    $newFile->move($dir, $sanitizedFilename);
                    $invoice->setAttachment($sanitizedFilename);
                }

                $em->persist($invoice);
                $em->flush();

                return $this->redirect($this->generateUrl('my-invoices'));
            }

对于旧文件的文件名未出现在编辑发票页面中的另一个问题,我将变量发送到 View :

return $this->render('AppBundle:Invoices:edit.html.twig', array(
            'oldFileName' => $oldFileName) 

并使用 twig 将该值放入输入文件小部件的标签

关于file - Symfony2 简单文件上传编辑,无实体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28704738/

相关文章:

java - 如何在没有文本框的情况下在 Selenium 中上传文件

asp.net - 上传前设置文件路径和名称属性

windows - 检测同一目录中的重复二进制文件 (Windows)

c++ - Python 导入和使用单元格(带有 linux .so 文件)

javascript - NodeJS如何将文件转换为字符串

php - 如何在 symfony/doctrine 上使用 SSL 连接到 MySQL

javascript - 上传文件扩展名过滤器选项不起作用?

file - 查找批处理文件中文件的修改日期是否早于 N 小时,如果不是则发送电子邮件

php - 找不到包的基本路径

php - 在 Symfony 之外验证 FOS 用户