2

我有一个 API,它返回 csv 内容作为响应,我想以 Excel 格式下载,我尝试了什么:

HTML:

<form id="test_form" accept-charset="utf-8" method="POST" action="http://prime.dev/index.php//data/reporting/downloadCSVFile.json"></form>

<a id="downloadcsv" class="min-button-silver">Download to Excel</a>

JS:

jQuery("#downloadcsv").click(function(e){                       jQuery('#test_form').submit();                  
});

PHP

public function downloadCSVFile()
{
    $data = $this->reporting_service->fetchCSV($request); //API request
    header("Content-Type: application/csv");        
    header("Content-Disposition: attachment; filename=test.csv");
    //header("Content-Length: ".$thesize);
    header("Pragma: no-cache");
    header("Expires: 0");
    //Will get the response from API like the below;    
    $data = 'clicks|conversions|ctr|cvr|impressions|invalid_clicks|currency.id
    4220894|127984|.1962348497109191647|.0059484688672145487|2150940063|557193|163';

    echo $data;
}

文件下载为 test.csv,但在记事本中打开,你们中的任何人都可以告诉我,这里出了什么问题。

提前致谢和问候

4

1 回答 1

0

如果你想下载 Excel,你需要额外的软件,比如 PEAR_Spreadsheet_Excel,因为你必须生成额外的标题和许多其他废话!但通常如果您创建一个正确的 CSV 文件,您也可以使用 Excel 打开它,它会显示所有列,就像在普通的 excel 文件中一样。

于 2012-11-22T09:18:35.753 回答