请帮助我,因为我无法相信自己的眼睛。
我拒绝使用某些第三方插件进行文件上传,并拒绝为文件/文档创建单独的实体。我只想在Zend / Laravel中进行简单的文件上传等等。
我有一张发票表,上面有最后一个collumb名称"附件",我想在这里存储它的清理名称(例如: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);
我遇到的第一个问题并且不知道如何解决是使用编辑表格..我有一个formbuilder
$builder->add('attachment', 'file',array('data_class'=>null))
因为我没有"对象"对于我的文件,因为在我的发票表中我将名称存储为字符串,我在这里得到一个错误,我需要强制data_class => null ..这很糟糕,因为如果我在上传字段的前端编辑一个Invoice,我会得到NULL,而不是链接到发票的当前文件的文件名。
使用:
$builder->add('attachment', 'text')
我没有把文件输入只是一个愚蠢的文本框但是这个时间 - 其中的名字 - ..所以我该如何解决这个问题?没有Document对象的文件输入小部件和文件名?!
第二个问题(我只是将我所有的应用程序抛弃到现在并转向laravel,因为我有很多"这些问题" ...简单的事情在symfony几乎总是比其他框架更复杂。或许我的错,我不想遵循指南并创建文档实体?!如果我想要灵活性并希望以另一种方式管理我的数据库怎么办?这不符合所有这些准则?)
所以我在编辑表单操作上,我上传了一个新文件(不要忘记我将文件设置为$ builder-> add(' attachment',file&#39) ;,阵列(' data_class' = GT; 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();
我唯一想要的是,在我的发票表中有一个文件名字符串,并测试自己文件是否存在于具有该文件名的路径中,如果它存在,则删除它并上传新的文件夹等等。为什么要这么难?
为什么我要创建一个实体?为什么我必须改变我的数据库结构(这不是这里的情况......但如果客户端不希望更改数据库怎么办...那么我就不能插入这个&#34;文档&# 34;表格)..为什么表单生成器不能显示来自invoice-&gt;附件的数据,我明白了,因为他需要一个文件数据并且他不能接受一个字符串,但为什么不是#&#这些简单的任务有指导方针吗?!
答案 0 :(得分:1)
好吧,我终于成功了:
所以它为NULL的问题是因为它确实将$ invoice实例绑定到了表单:
$invoice = $em->getRepository('AppBundle:Invoice')->find($id);
$form = $this->createForm(new InvoiceType($id), $invoice);
在这段代码之后,所有的反馈都像:$ invoice-&gt; getAttachment();
被称为表单发票对象而不是实际对象,所以基本上我之后只能调用以下内容:&#34; getClientOriginalName()&#34;并会显示我在编辑表单中上传的新文件。
为了解决这个问题,我创建了一个变量,该变量最初在$ 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将该值放入输入文件小部件的标签
答案 1 :(得分:0)
保持冷静。你需要做的比这要困难得多。
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
}