0

我正在处理一个接受一些用户输入和图像文件的表单,提交部分和输入到数据库中的数据工作正常,但是我被上传后如何命名文件,现在这就是我认为数据库C:\wamp2.5\tmp\phpF360.tmp中的图像名称显然不正确。

这就是我的控制器的样子DefaultController.php

public function createBlogAction(Request $request)
{

    $post = new Post();
    $form = $this->createForm(new PostCreate(), $post);
    $form->handleRequest($request);

    if ($form->isValid()) {
        $em = $this->getDoctrine()->getManager();
        $post->upload();
        $post->setDate(date_create(date('Y-m-d H:i:s')));
        $post->setAuthor('ClickTeck');
        $em->persist($post);
        $em->flush();

        $this->get('session')->getFlashBag()->add(
            'notice',
            'Success'
        );
    }

    return $this->render('BlogBundle:Default:blog-create.html.twig', array(
            'form' => $form->createView()
        )
    );
}

这就是我upload()在里面上传文件并将其移动到文件夹中的样子Entity/Post.php,我在文件夹中看到的文件名是正确的,但是现在进入数据库的文件名

public function upload()
{
    if (null === $this->getImage()) {
        return;
    }

    // I might be wrong, but I feel it is here that i need to name the file
    $this->getImage()->move(
        $this->getUploadRootDir(),
        $this->getImage()->getClientOriginalName()
    );

    $this->path = $this->getUploadDir();
    $this->file = null;
}

如果有人能把我推向正确的方向,我将不胜感激,我只需要命名文件,一个分配给数据库中图像的名称,并且文件也应该以相同的名称上传。


更新

我设法使用以下功能使其工作,不确定这是否是最佳实践,但它确实有效,我很想听听其他人的意见。请不要提供任何链接,如果您可以改进已经完成的工作,那就太好了。

public function upload()
{
    // the file property can be empty if the field is not required
    if (null === $this->getImage()) {
        return;
    }
    $dirpath = $this->getUploadRootDir();
    $image = $this->getImage()->getClientOriginalName();
    $ext = $this->getImage()->guessExtension();
    $name = substr($image, 0, - strlen($ext));
    $i = 1;
    while(file_exists($dirpath . '/' .  $image)) {
        $image = $name . '-' . $i .'.'. $ext;
        $i++;
    }
    $this->getImage()->move($dirpath,$image);
    $this->image = $image;
    $this->path = $this->getUploadDir();
    $this->file = null;
}
4

2 回答 2

1

文档中的这个主题可能会对您有所帮助:http ://symfony.com/doc/current/cookbook/doctrine/file_uploads.html

另外,你不应该把你的上传函数放在控制器中,而是使用 Doctrine 事件(生命周期回调)来自动调用你的函数。

于 2014-10-01T10:43:46.597 回答
0

根据@theofabry 的建议,您可以查看 symfony2 文档How to handle File Uploads with Doctrine,Controller 必须尽可能薄并尝试使用Doctrine Events.

如果你想继续你的逻辑,你可以尝试下面的代码,我还没有测试过......所以请小心。

   // set the path property to the filename where you'ved saved the file
   $this->path = $this->file->getClientOriginalName();

代替

 $this->path = $this->getUploadDir();
于 2014-10-01T11:31:03.283 回答