请帮助我,因为我不敢相信自己的眼睛。
我拒绝使用某些第三方插件进行文件上传,并拒绝为文件/文档创建单独的实体。我只想在 Zend/Laravel 等中进行简单的文件上传。
我有一个发票表,最后一列名称为“附件”,我想在这里存储其清理后的名称(例如: 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 中做简单的事情几乎总是比在其他框架中..或者也许是我的错,我不想遵循指南并创建文档实体?!如果我想要灵活性并且想要以不符合所有这些指南的其他方式管理我的数据库怎么办? ?)
所以我在编辑表单操作中,上传一个新文件(不要忘记我已将文件设置为 $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();
我唯一想要的就是,在我的发票表中有一个文件名字符串,并测试自己是否存在于具有该文件名的路径中,如果存在,则删除它并上传新的等等..为什么一定要这么难吗??
为什么我必须创建一个实体?为什么我必须改变我的数据库结构(这里不是这种情况..但是如果客户端不希望更改数据库怎么办..所以我无法插入这个“文档”表)..为什么可以'表单生成器显示来自发票->附件的数据,我明白是因为他需要文件数据并且他不能接受字符串,但为什么没有这些简单任务的指南?!
好吧,我终于成功了:
所以它为什么是 NULL 的问题是因为它确实将 $invoice 实例绑定到了表单:
$invoice = $em->getRepository('AppBundle:Invoice')->find($id);
$form = $this->createForm(new InvoiceType($id), $invoice);
在这段代码之后,所有引用如:$invoice->getAttachment();
被称为表单发票对象而不是实际对象,所以基本上在此之后我只能调用诸如:“getClientOriginalName()”之类的东西,并会向我显示我在编辑表单中上传的新文件。
为了解决这个问题,我创建了一个变量,该变量最初在 $invoice 对象之前存储该名称以绑定到表单
$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'));
}
对于旧文件的文件名未出现在编辑发票页面中的另一个问题,我将变量发送到视图:
return $this->render('AppBundle:Invoices:edit.html.twig', array(
'oldFileName' => $oldFileName)
并使用 twig 将该值放入输入文件小部件的标签中
保持冷静。 你让这件事变得比需要的更加困难。
myControllerAction()
{
// No need for an object, an array works fine
$model = array(
'invoice' => $invoice,
'attachment' => null
);
$builder = $this->createFormBuilder($model);
$builder->setAction($this->generateUrl('cerad_game_schedule_import'));
$builder->setMethod('POST');
$builder->add('attachment', 'file');
$builder->add('invoice', new InvoiceType());
$builder->add('import', 'submit', array(
'label' => 'Import From File',
'attr' => array('class' => 'import'),
));
$form = $builder->getForm();
$form->handleRequest($request);
if ($form->isValid())
{
$model = $form->getData();
$file = $model['attachment']; // The file object is built by the form processor
if (!$file->isValid())
{
$model['results'] = sprintf("Max file size %d %d Valid: %d, Error: %d<br />\n",
$file->getMaxFilesize(), // Returns null?
$file->getClientSize(),
$file->isValid(),
$file->getError());
die($model['results'];
}
$importFilePath = $file->getPathname();
$clientFileName = $file->getClientOriginalName();
// Xfer info to the invoice object and update
}