2

我有一个链接:

    {% 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;
    }
4

2 回答 2

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;
}
于 2012-11-27T12:38:26.577 回答
1

我遇到了同样的问题,为此我更改了实体类中的字段类型。它是“blob”,我把它变成了“文本”

/**
 * @var string
 *
 * @ORM\Column(name="content", type="text", nullable=false)
 */
private $content;
于 2012-12-19T09:00:29.633 回答