对于我的客户,我必须对一些不同的文件使用 blob 存储。
所以我创建了一个独立的包,其中 Blob 类扩展了 Doctrine\DBAL\Types\Type。并在捆绑类中具有引导功能。
这工作得很好,我可以在数据库 Blob 数据中写入。
但之后我无法下载任何文件:/
我有:
public function downloadAction($id) {
$em = $this->getDoctrine()->getManager();
/* @var $entity Document */
$entity = $em->getRepository('Lille3SapBundle:Document')->find($id);
if (!$entity) {
throw $this->createNotFoundException('Unable to find Document entity.');
}
$file = $entity->getFichier();
$response = new \Symfony\Component\HttpFoundation\Response($file, 200, array(
'Content-Type' => 'application/octet-stream',
'Content-Length' => sizeof($file),
'Content-Disposition' => 'attachment; filename="'.$entity->getNomDocument().'"',
));
return $response;
}
而且我有一个例外:响应内容必须是实现__toString()的字符串或对象,给定的“资源”。
实际上,$file值不是预期的 BLOB,而是类似于Resource id #123
-> 我检查了 blob 数据字段值,它们在数据库中没问题
那么如何在控制器中强制使用 blob 行而不是Resource id #111