0

我在上传文件时遇到问题,我将上传的文件保存在非公共文件夹(非 webroot 文件夹)中,然后我想获取所有上传文件的 webPAth 以在视频库中使用它们。

$videos = $repository->getVideosThumbs($this->getUser());

然后在我的树枝上

{% for video in videos %}
         <a href ="{{ path('neoctus_videobundle_default_watchvideo', {'id' : video.id, 'salt' : app.user.salt }) }}" >
            <img id="{{ video.id }}" src="/uploads/images/{{video.imgPath}}" alt="1st image description" height="150" width="150"  />
         </a>
    {% endfor %}

但我无法访问图片,因为该文件夹不是公开的,我知道我必须通过 x-sendFile 但我看不到如何在标题中发送多个 jpeg 文件,然后如何在树枝后恢复。

4

2 回答 2

1

您可以创建一个控制器操作来访问存储在非公用文件夹中的文件。在该操作中,您打开文件并流式传输到浏览器。

请参阅http://php.net/manual/en/function.readfile.php中的示例

你需要改变

header('Content-Disposition: attachment; filename='.basename($file));

header('Content-Disposition: inline; filename='.basename($file));

更新:

当您的控制器操作将流式传输请求的文件时,您可以通过请求具有所需文件标识符的操作来在 TWIG 中呈现它:

<img src="{{ path('route_to_stream_action', {'fileId':'some_id'}) }}">

浏览器将像直接访问一样对待流文件,因此您可以对其应用任何 CSS。

更新:

示例控制器操作:

public function streamFileAction($fileId)
{

    // implement your own logic to retrieve file using $fileId
    $file = $this->getFile($fileId);

    $filename = basename($file);

    $response = new StreamedResponse();
    $response->setCallback(function () use ($file){
        $handle = fopen($file->getRealPath(), 'rb');
        while (!feof($handle)) {
            $buffer = fread($handle, 1024);
            echo $buffer;
            flush();
        }
        fclose($handle);
    });
    $d = $response->headers->makeDisposition(ResponseHeaderBag::DISPOSITION_INLINE, $filename);
    $response->headers->set('Content-Disposition', $d);
    $response->headers->set('Content-Type', $file->getMimeType());

    return $response;
}
于 2013-09-18T20:02:19.447 回答
0

您还可以在 twig 中使用“控制器”功能:

{{ render(controller('AcmeBundle:Controller:action')) }}

将推出

AcmeBundle 中 ControllerController 中的 actionAction。

希望这会有所帮助。

于 2015-03-24T21:56:45.947 回答