在symfony2中显示pdf

时间:2014-02-05 13:57:55

标签: symfony pdf controller download

我想展示一个pdf,但我这样做了,我只能下载pdf:这是我的代码:

        $response = new BinaryFileResponse($path);
        $response->trustXSendfileTypeHeader();
        $response->setContentDisposition(ResponseHeaderBag::DISPOSITION_ATTACHMENT, $file . '.pdf');
        return $response;

有什么想法吗?

1 个答案:

答案 0 :(得分:5)

您是否尝试过设置Content-Type标题?

$response->headers->set('Content-Type', 'application/pdf');

此外,setContentDisposition调用自DISPOSITION_ATTACHMENT值后的信息会强制您的浏览器下载该文件。