PHPExcel下载文件

时间:2015-03-13 03:32:32

标签: php angularjs phpexcel export-to-excel

我想下载使用PHPExcel生成的excel文件。我按照PHPExcel Force Download Issue的代码进行操作,但无济于事。在我记录数据接收后,我的控制台只显示了这些符号�。但是,当我将$objWriter->save('php://output');更改为$objWriter->save('filename.xlsx');时,它只是将文件下载到我的Web服务器中的根文件夹而没有任何下载文件的指示。下面是我的php文件的代码片段

<?php
$con = mysqli_connect('localhost', 'root', '', 'test');
mysqli_select_db($con, 'test');

$qry = "SELECT * FROM lostitem";
$res = mysqli_query($con, $qry);

require_once '/Classes/PHPExcel.php';
include '/Classes/PHPExcel/Writer/Excel2007.php';

// Create new PHPExcel object
$objPHPExcel = new PHPExcel();
/** Determine filename **/
$filename = "report.xlsx";

/** Set header information **/
header('Content-Type: application/vnd.ms-excel');
header('Content-Disposition: attachment;filename="' . $filename . '"');
header('Cache-Control: max-age=0');
$F=$objPHPExcel->getActiveSheet();
$Line=1;
$F->setCellValue('A'.$Line, 'Lost Item ID');
$F->setCellValue('B'.$Line, 'Lost Item Title');
$F->setCellValue('C'.$Line, 'Lost Item Description');
while($Trs=mysqli_fetch_assoc($res)){//extract each record
    ++$Line;
    $F->setCellValue('A'.$Line, $Trs['LostItemID']);
    $F->setCellValue('B'.$Line, $Trs['LostItemTitle']);
    $F->setCellValue('C'.$Line, $Trs['LostItemDescription']);//write in the sheet
    //++$Line;
}
// Redirect output to a client’s web browser (Excel5)
header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
header('Content-Disposition: attachment;filename="'.$filename.'"');
header('Cache-Control: max-age=0');

$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007');
$objWriter->save('php://output');
exit;

?>

这是我的angularjs代码段:

$scope.getReport = function(type){
        if(type == 'lost'){
            $http.post("getLostItemReport.php")
                .success(function(data, status, headers, config){
                    console.log("Get report data: " + data);
                })
        }
      }

注意:我使用AngularJS $ http.post来调用php文件。

浏览器:Google Chrome

编辑:我已经尝试过PHPExcel 01simple-download-xlsx.php中的示例php代码,结果也一样。

更新:我找到了一些解决方案,通过接受Excel作为响应来搜索获取AngularJS但是在下载之后,似乎文件被乱码文本或符号类似于我注册的文件安慰。除此之外,文件名是随机文本和数字,而不是我在PHP代码中指定的文件名。代码如下:

var blob = new Blob([data], {type: "application/vnd.ms-excel"});
                    var objectUrl = URL.createObjectURL(blob);

3 个答案:

答案 0 :(得分:2)

我找到了一个使用AngularJS下载的解决方案,可以动态更改文件名。我们需要下载FileSave.js并包含在index.html的标题中。代码段如下:

main.js

$scope.fetchReport = function(){
            $http({
                url: 'path_to_php_file',
                method: 'POST',
                responseType: 'arraybuffer',
                headers: {
                    'Content-type': 'application/json',
                    'Accept': 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
                }
            }).success(function(data){
                var blob = new Blob([data], {type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"});
                saveAs(blob, file_name_to_be+'.xlsx');
            }).error(function(){
                //Some error log
            });
        }

的index.html

<button class="btn btn-primary" ng-click="fetchReport()">Get Report</button>

php文件与问题中的相同,只需要在exit;

之前添加几行
header('Content-disposition: attachment; filename='.$filename);
header('Content-Length: ' . filesize($filename));
header('Content-Transfer-Encoding: binary');
header('Cache-Control: must-revalidate');
header('Pragma: public');

//Replace php://output with $filename and add code below after that(before exit;)
readfile($filename);

注意:它仅适用于HTML5支持的浏览器。

答案 1 :(得分:1)

您的根文件夹中有excel文件吗?

所以,我认为你可以使用header('Location: path to your excel file');这可以帮助你下载文件。


$objWriter->save('filename.xlsx');添加echo json_encode(readfile($file));

后还有另一个选项

在角度js代码中使用

$scope.getReport = function (type) {
if (type == 'lost') {
    $http({
        url: 'getLostItemReport.php',
        method: 'POST',
        responseType: 'arraybuffer',
        headers: {
            'Content-type': 'application/json',
            'Accept': 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
        }
    })
    .success(function (data, status, headers, config) {
        var blob = new Blob([data], {
            type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
        });
        var objectUrl = URL.createObjectURL(blob);
        window.open(objectUrl);
    })
}

并将header('Content-Type: application/vnd.ms-excel');设置为header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');

试试这个。

答案 2 :(得分:1)

我有一个非常基本的解决方案,我在我的网站上使用。希望这有效。

创建超链接并将href设置为excel文件并使用下载属性。

<a href='file to excel' download='download'>Download Excel File</a>

单击此链接时,文件将开始下载。