作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个用 Symfony2 制作的应用程序,在我的 twig 模板中,我显示了一个包含一些 pdf 文件的表格。
此 pdf 文件(一个给用户)存储在 /app/var/pdf/xxx.pdf
中。
如果我使用:
<a href="{{ 'entity.pdf' }}">PDF</a>
我的路径是正确的,例如:symfony/app/var/pdf/123123.pdf
,但是当我点击链接时,我的浏览器返回 404 Not Found 错误。显然,我已经检查过该文件是否存储在此路径中。
有什么帮助吗?
提前致谢。
最佳答案
要强制下载 pdf 文件,请在 Controller 中尝试此操作。
/**
* @Route("/download/{id}",name="pdf_download")
*/
public function downloadAction($id) {
$downloadedFile = $repository->findOneBy(
array(
'id' => $id,
)
);
$response=new Response();
$response = new Response();
$response->headers->set('Content-type', 'application/octet-stream');
$response->headers->set('Content-Disposition', sprintf('attachment; filename="%s"', $downloadedFile->getFilename() ));
$response->setContent(file_get_contents($downloadedFile->getAbsolutePath()));
$response->setStatusCode(200);
$response->headers->set('Content-Transfer-Encoding', 'binary');
$response->headers->set('Pragma', 'no-cache');
$response->headers->set('Expires', '0');
return $response;
}
在模板中
<a href={{path('pdf_download',{'id':file.id})}}>{{file.filename}}</a>
关于php - 如何从 Symfony 的 View 中下载文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21550531/
前文链接: Spring复杂的BeanFactory继承体系该如何理解? ----上 Spring复杂的BeanFactory继承体系该如何理解? ----中 Spring IoC容器 Applica
我正在努力实现这个目标 | Div | |Div nav wrapper| | logo | |con
我正在尝试从下拉菜单中的链接进行模式启动。模态似乎启动了(网站变灰),但看不到。来自不在下拉列表中的常规链接的模式工作得很好。我愚弄了 jquery,但由于我是 jquery 的新手,所以没有任何结果
我是一名优秀的程序员,十分优秀!