我已经在这里和许多其他网站上进行了搜索,但找不到这样一个众所周知的问题的解决方案。我无法提示使用 php 的 readfile 下载 excel 文件。我也尝试过使用 fopen,print(fread),fclose 组合,但这也不起作用。请求 url 是 https 我在 http 时得到了提示:
$path=$_SERVER['DOCUMENT_ROOT'].'/uploads/'.$legit;
header('Content-Description: File Transfer');
header('Content-Transfer-Encoding: binary');
header('Accept-Ranges: bytes');
header("Content-Disposition: attachment; filename='file.xls'");
header('Content-Type: application/vnd.ms-excel');
header('Content-Length: ' . filesize(\$path));
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Expires: 0');
ob_clean();
readfile($path);
exit;
/* IF ($file = FOPEN($path, 'rb')) {
WHILE(!FEOF($file) and (CONNECTION_STATUS()==0)) {
PRINT(FREAD($file, 1024*8));
FLUSH();
}
FCLOSE($file);
}
RETURN((CONNECTION_STATUS()==0) and !CONNECTION_ABORTED());
exit;
} */
请求,响应标头在萤火虫中都显示得很好,但没有提示。
我的客户端标头是使用 dojo/request API 发送的:
var args={
headers :{
'Content-Type' :'application/x-www-form-urlencoded',
'Accept' :'application/vnd.ms-excel',
'X-Requested-With':'XMLHttpRequest'
},
method:'GET',
timeout:10000
}
var deferred=request.get(url,args);//the url is https it worked with http
有什么帮助解决这个问题吗?