在我的
HTML页面上,我向一个强制下载的PHP脚本发出了一个
JQuery ajax请求,但什么都没发生?
var file = "uploads/test.css"; $.ajax( { type : "POST",url : "utils/Download_File.PHP",data : {"file":file} })
Download_File.PHP脚本如下所示
<?PHP Download_File::download(); class Download_File { public static function download() { $file = $_POST['file']; header('Content-Type: application/octet-stream'); header('Content-Disposition: attachment'); readfile('http://localhost/myapp/' . $file); exit; } } ?>
但是由于某种原因什么都没发生?我查看了firebug中的响应头,无法看到任何问题.我正在使用Xampp.任何帮助深表感谢.
谢谢!
您应该指定Content-Transfer-Encoding.此外,您应在Content-Disposition上指定文件名.
原文链接:https://www.f2er.com/php/137954.htmlheader('Content-Type: application/octet-stream'); header('Content-Transfer-Encoding: binary'); header('Content-Disposition: attachment; filename="'.$file.'"'); readfile('http://localhost/myapp/'.$file); exit;
重要的是在文件名周围包含双引号,因为这是RFC 2231所要求的.如果文件名不在引号中,则知道Firefox下载文件名中包含空格的文件时会出现问题.
另外,请确保关闭后确保没有空格?>.如果在关闭PHP标记之后存在空格,则标题将不会发送到浏览器.
作为旁注,如果您要提供许多常见文件类型供下载,则可以考虑指定这些MIME类型.这为最终用户提供了更好的体验.例如,你可以这样做:
//Handles the MIME type of common files $extension = explode('.',$file); $extension = $extension[count($extension)-1]; SWITCH($extension) { case 'dmg': header('Content-Type: application/octet-stream'); break; case 'exe': header('Content-Type: application/exe'); break; case 'pdf': header('Content-Type: application/pdf'); break; case 'sit': header('Content-Type: application/x-stuffit'); break; case 'zip': header('Content-Type: application/zip'); break; default: header('Content-Type: application/force-download'); break; }