使用Response不会在Laravel5上下载文件

时间:2015-10-26 16:03:43

标签: httpresponse laravel-5.1 downloading laravel-excel

我使用Laravel 5.1。

jQuery ajax调用是这样的:

public function exportTable(Request $req) {
            $spots = array_flatten($req->all());
            $res   = Spot::whereIn('id', $spots)->get();

            Excel::create('Spots', function($excel) use($res) {
                $excel->setTitle('Title goes here');
                $excel->setCreator('Creator Goes Here')->setCompany('Company Goes Here');
                $excel->sheet('Excel sheet', function($sheet) use($res) {
                    $sheet->setOrientation('landscape');
                    $sheet->fromArray($res);
                });
            })->store('csv', storage_path('/exports', true));

            $file    = base_path() . '/storage/exports/Spots.csv';
            $headers = ['Content-Type: application/csv',  'Content Description: File Transfer', 'Cache-Control: must-revalidate, post-check=0, pre-check=0'];
            return response()->download($file, 'Spots.csv' , $headers);
    }

然后以这种方式定义php方法:

HTTP/1.0 200 OK
0:                   Content-Type: application/csv
Cache-Control:       public
Content-Disposition: attachment; filename="Spots.csv"
Date:                Mon, 26 Oct 2015 16:08:26 GMT
Last-Modified:       Mon, 26 Oct 2015 16:08:26 GMT
1:                   Content-Description: File Transfer
2:                   Cache-Control: must-revalidate, post-check=0, pre-check=0

Chrome开发者控制台将结果打印为原始行。

文件已成功导出并在磁盘中创建。

文件路径正确。

但是下载永远不会开始。

回应回应给出:

{{1}}

1 个答案:

答案 0 :(得分:0)

我在这里给每个有同样问题的人都给出答案。

@manix想通了:我正在尝试通过Ajax下载,这需要以另一种方式完成,而不是我编写代码的方式