我有一个链接:
{% for item in list %}
...
<a href="{{ path('show', { 'id': item.id }) }}"> read pdf file</a>
{% endfor %}
当用户点击链接时,我想显示pdf文件(文件存储为mysql中的blob)。下面的代码不正确,但我希望我的行动能够完成类似的操作。
/**
* @Route("/show", name="show")
*/
public function showAction()
{
$id = $this->get('request')->query->get('id');
$item = $this->getDoctrine()->getRepository('MyDocsBundle:Files')->file($id);
$pdfFile = $item->getFile(); //returns pdf file stored as mysql blob
$response = new Response();
$response->setStatusCode(200);
$response->headers->set('Content-Type', 'application/pdf');
$response->setContent($pdfFile);
$response->send() //not sure if this is needed
return $response;
}
答案 0 :(得分:2)
我不确定Doctrine本身是否有blob类型,因此我假设您已将其设置为将文件正确存储为数据库中的实际BLOB。
尝试更多内容......
/**
* @Route("/show/{id}", name="show")
*/
public function showAction($id)
{
$item = $this->getDoctrine()->getRepository('MyDocsBundle:Files')->find($id);
if (!$item) {
throw $this->createNotFoundException("File with ID $id does not exist!");
}
$pdfFile = $item->getFile(); //returns pdf file stored as mysql blob
$response = new Response($pdfFile, 200, array('Content-Type' => 'application/pdf'));
return $response;
}
答案 1 :(得分:1)
我遇到了同样的问题,为此我改变了实体类中的字段类型。它是“blob”我把它变成了“文本”
/**
* @var string
*
* @ORM\Column(name="content", type="text", nullable=false)
*/
private $content;