我正在使用StreamedResponse
来投放大型CSV文件。当我在回调函数中遇到错误时,浏览器仅显示“找不到文件”错误,并且我无法访问Symfony调试工具栏。有没有办法访问在回调中引发的异常?
我的动作如下:
public function exportAction(Request $request) {
$response = new StreamedResponse();
$response->setCallback(function() {
// Here i'm fetching my data with Doctrine and outputting it with
// $handle = fopen('php://output', 'w'); ...fputcsv() ...fclose();
});
$response->setStatusCode(200);
$response->headers->set('Content-Type', 'text/csv; charset=utf-8');
$response->headers->set('Content-Disposition', 'attachment; filename="export.csv"');
return $response;
}
编辑 在大多数情况下,在浏览器开发工具中查看请求时,响应内容为空白。
答案 0 :(得分:1)
嗯...我不知道有什么方便的方法,但是您可以加载主页,打开分析器,然后单击“最后10个”按钮以查看过去的配置文件。